name: 'Setup Docker Image(s)' on: workflow_call: inputs: branch: description: 'The branch for the workflow' default: 'dev' required: true type: string env: REGISTRY: ghcr.io IMAGE_NAME: ${{ github.repository }} permissions: contents: read packages: write jobs: build: runs-on: ubuntu-latest steps: - name: Check out repository 🎉 uses: actions/checkout@v3 - name: Set up Docker Buildx 🏗 uses: docker/setup-buildx-action@v2 with: buildkitd-flags: --debug - name: Log in to the Container registry 🔐 uses: docker/login-action@v2 with: registry: ${{ env.REGISTRY }} username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - name: Extract metadata (tags, labels) for Docker 🙏🏽 id: meta uses: docker/metadata-action@v4 with: images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} - name: Build and push Docker image 🦾 uses: docker/build-push-action@v3.1.1 with: context: . file: Dockerfile push: true tags: ${{ steps.meta.outputs.tags }},${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ inputs.branch }},${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest labels: ${{ steps.meta.outputs.labels }}