Skip to content

Commit

Permalink
🔧 Use environment files
Browse files Browse the repository at this point in the history
  • Loading branch information
Schneegans committed Oct 24, 2020
1 parent 9ee069b commit fe55f62
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/badges.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Get the Numbers
run: echo "::set-env name=ANSWER::42"
run: echo "ANSWER=42" >> $GITHUB_ENV
- name: Create the Badge
uses: schneegans/dynamic-badges-action@master
with:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ A common usage pattern of this action is to create environment variables in prev

```yml
- name: Get the Numbers
run: echo "::set-env name=ANSWER::42"
run: echo "ANSWER=42" >> $GITHUB_ENV
- name: Create the Badge
uses: schneegans/[email protected]
with:
Expand Down

0 comments on commit fe55f62

Please sign in to comment.