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 12ef939 commit a82dc74Copy full SHA for a82dc74
.github/workflows/release.yml
@@ -386,6 +386,9 @@ jobs:
386
docker:
387
runs-on: "ubuntu-20.04"
388
needs: [build-and-sign, build-spin-static]
389
+ # Only build/push Docker images if this is a v* tag or if this is main/canary
390
+ # i.e. skip for v* release branches
391
+ if: startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/main'
392
permissions:
393
contents: read
394
packages: write
0 commit comments