Skip to content

Commit

Permalink
fix(ci): Update environment variables handing
Browse files Browse the repository at this point in the history
Update to use environment files as per GitHub's recommendation:
https://github.blog/changelog/2020-10-01-github-actions-deprecating-set-env-and-add-path-commands/

Fixes #2
  • Loading branch information
mbamber committed Oct 8, 2020
1 parent d948cd5 commit 3ae5e34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
ref: ${{ github.ref }}
fetch-depth: 0 # Include all history as we need that to determine the next version
- name: Determine New Version
run: echo "::set-env name=NEW_VERSION::$(make local-version)"
run: echo "NEW_VERSION=$(make local-version)" >> $GITHUB_ENV

build:
name: Build
Expand Down

0 comments on commit 3ae5e34

Please sign in to comment.