-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #141 from arunsathiya/master
ci: Use GITHUB_OUTPUT envvar instead of set-output command
- Loading branch information
Showing
3 changed files
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,8 +14,8 @@ jobs: | |
|
||
- id: get-commit-info | ||
run: | | ||
echo "::set-output name=author::$(git log -1 --pretty=format:'%an <%ae>')" | ||
echo "::set-output name=message::$(git show -s --format=%B)" | ||
echo "author=$(git log -1 --pretty=format:'%an <%ae>')" >> "$GITHUB_OUTPUT" | ||
echo "message=$(git show -s --format=%B)" >> "$GITHUB_OUTPUT" | ||
- run: git clone https://[email protected]/vmware/vrealize-developer-tools.wiki.git /tmp/wiki-repo | ||
env: | ||
|