We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0adae8 commit 183061aCopy full SHA for 183061a
1 file changed
.github/workflows/release.yml
@@ -13,10 +13,10 @@ jobs:
13
- uses: actions/checkout@v2
14
- name: Get tag version
15
id: tag_name
16
- run: echo ::set-output name=SOURCE_TAG::${GITHUB_REF#refs/tags/}
+ run: echo "SOURCE_TAG=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT
17
- name: Get repo name
18
id: repo_name
19
- run: echo ::set-output name=REPOSITORY_NAME::$(echo "$GITHUB_REPOSITORY" | sed -e "s/:refs//")
+ run: echo "REPOSITORY_NAME=$(echo "$GITHUB_REPOSITORY" | sed -e "s/:refs//")" >> $GITHUB_OUTPUT
20
- name: Build a release
21
run: |
22
bash create_release.sh $SOURCE_TAG
0 commit comments