diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 4ea48ba..c249ccd 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -11,13 +11,16 @@ on: description: 'BuildKit image' default: 'moby/buildkit:buildx-stable-1' required: false + tag: + description: 'Additional tag to push' + required: false schedule: - cron: '0 10 * * *' push: branches: - 'master' tags: - - v* + - 'v*' env: BUILDX_VERSION: latest @@ -85,6 +88,10 @@ jobs: uses: docker/metadata-action@v4 with: images: ${{ matrix.slug }} + tags: | + type=ref,event=branch + type=ref,event=tag + type=raw,value=${{ inputs.tag }},enable=${{ inputs.tag != '' }} - name: Set up QEMU uses: docker/setup-qemu-action@v2