Skip to content
This repository has been archived by the owner on Jan 28, 2022. It is now read-only.

Commit

Permalink
ci: GitHub actions require new env var handling
Browse files Browse the repository at this point in the history
  • Loading branch information
zehnm committed Oct 22, 2020
1 parent 4ed3cb2 commit 382e015
Show file tree
Hide file tree
Showing 2 changed files with 331 additions and 336 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
- name: Get artifact version
run: |
read -r APP_VERSION < binaries/version.txt
echo "::set-env name=APP_VERSION::$APP_VERSION"
echo "APP_VERSION=$APP_VERSION" >> $GITHUB_ENV
- name: Upload build artefacts
uses: actions/upload-artifact@v2
Expand All @@ -93,7 +93,7 @@

- name: Get timestamp
run: |
echo "::set-env name=TIMESTAMP::$(date +"%Y%m%d_%H%M%S")"
echo "TIMESTAMP=$(date +"%Y%m%d_%H%M%S")" >> $GITHUB_ENV
- name: Create GitHub development build archives
if: "!contains(github.ref, 'tags/v')"
Expand Down
Loading

0 comments on commit 382e015

Please sign in to comment.