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 35316eae6b
commit 3736cf293b

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