Skip to content

Commit

Permalink
Update set output syntax (#14)
Browse files Browse the repository at this point in the history
* Update set output syntax

* Extra =
  • Loading branch information
wenga86 authored Jan 24, 2023
1 parent e3db9d2 commit 16e1553
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/actions/test-deploy-to-s3-bucket/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ runs:
- name: 'Get unique id'
id: id
shell: bash
run: echo "::set-output name=id::$(date '+%s')"
run: echo "id=$(date '+%s')" >> $GITHUB_OUTPUT

- name: 'Create archive file'
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/test-package-archive/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ runs:
- name: 'Save off action path'
id: path
shell: bash
run: echo "::set-output name=path::${{ github.action_path }}"
run: echo "path=${{ github.action_path }}" >> $GITHUB_OUTPUT

- name: 'Run package-archive action'
id: unpack
Expand Down

0 comments on commit 16e1553

Please sign in to comment.