We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1aa783d commit 7008112Copy full SHA for 7008112
1 file changed
.github/workflows/docs_deploy_aws.yml
@@ -31,7 +31,7 @@ jobs:
31
uses: actions/checkout@v4
32
33
- id: set-branch
34
- run: echo "::set-output name=branchname::${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}"
+ run: echo "branchname=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}" >> $GITHUB_OUTPUT
35
36
- id: set-version
37
run: |
@@ -41,7 +41,7 @@ jobs:
41
else
42
version="v${branch#release/}"
43
fi
44
- echo "::set-output name=releaseversion::$version"
+ echo "releaseversion=$version" >> $GITHUB_OUTPUT
45
46
- name: Setup Node
47
uses: actions/setup-node@v4
0 commit comments