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 22900fd commit 1639698Copy full SHA for 1639698
.github/workflows/build.yml
@@ -31,11 +31,11 @@ jobs:
31
32
- if: github.ref == 'refs/heads/main'
33
name: Conditional(Set tag as `latest`)
34
- run: echo "tag=willfarrell/crontab:latest >> $GITHUB_ENV"
+ run: echo "tag=willfarrell/crontab:latest" >> $GITHUB_ENV
35
36
- if: startsWith(github.ref, 'refs/tags/')
37
name: Conditional(Set tag as `{version}`)
38
- run: echo "tag=willfarrell/crontab:${GITHUB_REF#refs/*/} >> $GITHUB_ENV"
+ run: echo "tag=willfarrell/crontab:${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
39
40
- run: |
41
echo "$tag"
0 commit comments