CI: fix syntax for environment variables in GITHUB

This commit is contained in:
Glenn Y. Rolland 2021-11-25 17:04:03 +01:00
parent 108f6c42c6
commit 75d6511cbc

View file

@ -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