Skip to content

Commit

Permalink
[Workflow] Use Environment Files instead of ::set-env
Browse files Browse the repository at this point in the history
  • Loading branch information
Maschell committed Nov 26, 2020
1 parent bfb52bb commit 4174957
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ jobs:
- name: Get environment variables
id: get_repository_name
run: |
echo ::set-env name=REPOSITORY_NAME::$(echo "$GITHUB_REPOSITORY" | awk -F / '{print $2}' | sed -e "s/:refs//")
echo ::set-env name=DATETIME::$(echo $(date '+%Y%m%d-%H%M%S'))
echo REPOSITORY_NAME=$(echo "$GITHUB_REPOSITORY" | awk -F / '{print $2}' | sed -e "s/:refs//") >> $GITHUB_ENV
echo DATETIME=$(echo $(date '+%Y%m%d-%H%M%S')) >> $GITHUB_ENV
- uses: actions/download-artifact@master
with:
name: binary
Expand Down

0 comments on commit 4174957

Please sign in to comment.