add testing client rucio image #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Docker auto build - VRE DEV | |
on: | |
push: | |
path: | |
containers/** | |
env: | |
REGISTRY: ghcr.io | |
jobs: | |
build-and-push: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
context: [ | |
'rucio-client-testing', | |
] | |
fail-fast: false | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Log in to the GH Container Registry - ${{ env.REGISTRY }} | |
id: login | |
uses: docker/[email protected] | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Extract metadata for ${{ matrix.context }} | |
id: meta | |
uses: docker/[email protected] | |
with: | |
flavor: | | |
latest=true | |
tags: | | |
type=sha | |
images: ${{ env.REGISTRY }}/${{ github.repository_owner }}/${{ matrix.context }} | |
- name: Build and push ${{ matrix.context }} | |
id: build-and-push | |
uses: docker/[email protected] | |
with: | |
context: ./containers/${{ matrix.context }} | |
file: containers/${{ matrix.context }}/Dockerfile | |
push: true | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} | |
build-args: | | |
TAG=32.0.0 |