We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7000087 commit 12df913Copy full SHA for 12df913
.github/workflows/ci.yaml
@@ -95,7 +95,7 @@ jobs:
95
96
- name: Login to quay.io
97
uses: docker/login-action@v2
98
- if: ${{ startsWith(github.ref, 'refs/heads/main') }}
+ if: ${{ startsWith(github.ref, 'refs/heads/main') || startsWith(github.ref_name, 'v') }}
99
with:
100
registry: ${{ env.REGISTRY }}
101
username: ${{ secrets.QUAY_USERNAME }}
@@ -108,6 +108,6 @@ jobs:
108
109
context: ./
110
cache-from: type=registry,ref=${{ env.IMAGE }}:latest
111
- push: ${{ startsWith(github.ref, 'refs/heads/main') }}
+ push: ${{ startsWith(github.ref, 'refs/heads/main') || startsWith(github.ref_name, 'v') }}
112
tags: ${{ steps.meta.outputs.tags }}
113
platforms: linux/amd64,linux/arm64
0 commit comments