CI: fix syntax for environment variables in GITHUB
This commit is contained in:
parent
108f6c42c6
commit
75d6511cbc
1 changed files with 1 additions and 1 deletions
2
.github/workflows/build-and-publish.yml
vendored
2
.github/workflows/build-and-publish.yml
vendored
|
@ -18,7 +18,7 @@ jobs:
|
|||
# steps to perform in job
|
||||
steps:
|
||||
- name: Set current date as env variable
|
||||
run: echo "BUILD_VERSION::v$(date +'%Y%m%d_%H%M')" >> $GITHUB_ENV
|
||||
run: echo "BUILD_VERSION=v$(date +'%Y%m%d_%H%M')" >> $GITHUB_ENV
|
||||
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v2
|
||||
|
|
Loading…
Reference in a new issue