create-tag: Fix bash typo
This seems to be a bit special in GitHub Actions with bash: https://docs.github.com/en/actions/using-workflows/workflow-commands-for-github-actions#setting-an-environment-variable
This commit is contained in:
parent
60db6ad06f
commit
64be96017f
1 changed files with 1 additions and 1 deletions
2
.github/workflows/create-tag.yml
vendored
2
.github/workflows/create-tag.yml
vendored
|
|
@ -12,7 +12,7 @@ jobs:
|
|||
|
||||
steps:
|
||||
- name: Even or odd week
|
||||
run: if [ `expr \`date +\%s\` / 86400 \% 2` -eq 0 ]; then echo "WEEK='odd'" >> $GITHUB_ENV; else echo "WEEK='even'" >> $GITHUB_ENV; fi
|
||||
run: if [ `expr \`date +\%s\` / 86400 \% 2` -eq 0 ]; then echo "WEEK=odd" >> $GITHUB_ENV; else echo "WEEK=even" >> $GITHUB_ENV; fi
|
||||
shell: bash
|
||||
|
||||
- name: Upstream tag
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue