Skip to content

Commit

Permalink
Fix github actions set-env deprecation
Browse files Browse the repository at this point in the history
  • Loading branch information
dmerrill6 committed Nov 16, 2020
1 parent ac7c728 commit 7372f20
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ jobs:
brew install mitchellh/gon/gon
- name: Set stage to prd for all
run: |
echo "::set-env name=STAGE::PRD"
echo "STAGE=PRD" >> $GITHUB_ENV
- name: Set stage to dev if tagged develop
if: endsWith(github.ref, '-dev')
run: |
echo "::set-env name=STAGE::DEV"
echo "STAGE=DEV" >> $GITHUB_ENV
- name: Set secret names
id: secretnames
run: |
Expand Down

0 comments on commit 7372f20

Please sign in to comment.