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 5d55f84 commit 4b9676dCopy full SHA for 4b9676d
1 file changed
.depot/workflows/cicd.yml
@@ -49,7 +49,7 @@ jobs:
49
run: node --run typecheck
50
51
docker-build:
52
- if: github.ref != 'refs/heads/main'
+ if: ${{ github.ref != 'refs/heads/main' }}
53
needs: [ci]
54
runs-on: depot-ubuntu-24.04
55
permissions:
@@ -63,7 +63,7 @@ jobs:
63
platforms: linux/arm64
64
65
docker-push:
66
- if: github.ref == 'refs/heads/main'
+ if: ${{ github.ref == 'refs/heads/main' }}
67
68
69
environment: image-registry
@@ -93,6 +93,6 @@ jobs:
93
with:
94
project: ks849krng9
95
platforms: linux/amd64,linux/arm64
96
- push: ${{ github.ref == 'refs/heads/main' }}
+ push: true
97
tags: ${{ steps.meta.outputs.tags }}
98
labels: ${{ steps.meta.outputs.labels }}
0 commit comments