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 c5838ac commit eda9f15Copy full SHA for eda9f15
.github/workflows/build.yml
@@ -60,7 +60,7 @@ jobs:
60
- uses: docker/build-push-action@v5
61
with:
62
context: builders/${{ matrix.entry.target }}
63
- push: ${{ github.ref == 'refs/heads/main' || github.ref == 'refs/tags/*' }}
+ push: ${{ github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/') }}
64
tags: ${{ steps.meta.outputs.tags }}
65
labels: ${{ steps.meta.outputs.labels }}
66
.github/workflows/release.yml
@@ -39,6 +39,7 @@ jobs:
39
permissions:
40
contents: write
41
id-token: write
42
+ packages: write
43
uses: ./.github/workflows/build.yml
44
45
publish: true
@@ -50,6 +51,7 @@ jobs:
50
51
52
53
54
55
56
57
0 commit comments