Skip to content

Commit 46dabc4

Browse files
committed
1 parent 7b2b19d commit 46dabc4

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/label-linked-issues.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
ref: main
4040
- id: version
4141
name: Get project version
42-
run: echo "::set-output name=result::$(jq .version package.json -r)"
42+
run: echo "result=$(jq .version package.json -r)" >> $GITHUB_OUTPUT
4343
- id: query
4444
name: Query linked issues
4545
uses: octokit/graphql-action@v2.2.23

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
ref: ${{ format('refs/tags/{0}', env.TAG) }}
4848
- id: version
4949
name: Get package version
50-
run: echo "::set-output name=result::$(jq .version package.json -r)"
50+
run: echo "result=$(jq .version package.json -r)" >> $GITHUB_OUTPUT
5151
- id: dist-tag
5252
name: Get dist tag
5353
uses: flex-development/dist-tag-action@1.1.2

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,14 +52,14 @@ jobs:
5252
ref: ${{ env.REF }}
5353
- id: version
5454
name: Get version
55-
run: echo "::set-output name=result::$(jq .version package.json -r)"
55+
run: echo "result=$(jq .version package.json -r)" >> $GITHUB_OUTPUT
5656
- id: tag-prefix
5757
name: Get release tag prefix
58-
run: echo "::set-output name=result::$(jq .tagPrefix package.json -r)"
58+
run: echo "result=$(jq .tagPrefix package.json -r)" >> $GITHUB_OUTPUT
5959
- id: tag
6060
name: Get release tag
6161
run: |
62-
echo "::set-output name=result::${{ format('{0}{1}', steps.tag-prefix.outputs.result, steps.version.outputs.result) }}"
62+
echo "result=${{ format('{0}{1}', steps.tag-prefix.outputs.result, steps.version.outputs.result) }}" >> $GITHUB_OUTPUT
6363
- id: dist-tag
6464
name: Get dist tag
6565
uses: flex-development/dist-tag-action@1.1.2

0 commit comments

Comments
 (0)