Skip to content

Commit

Permalink
Merge pull request #681 from byu-oit/set-output
Browse files Browse the repository at this point in the history
Fix deprecated usage of `set-output`
  • Loading branch information
GaryGSC authored Oct 24, 2022
2 parents 68e959b + 1270435 commit 969c2dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ jobs:

- name: Get Current Timestamp
id: date
run: echo "::set-output name=timestamp::$(date +'%Y-%m-%d_%H-%M-%S')"
run: echo "timestamp=$(date +'%Y-%m-%d_%H-%M-%S')" >> $GITHUB_OUTPUT

- name: Setup Docker Buildx
uses: docker/setup-buildx-action@v2
Expand Down

0 comments on commit 969c2dc

Please sign in to comment.