Skip to content

Commit 6c68d9a

Browse files
Remove usage of set-output in workflow
1 parent 067e553 commit 6c68d9a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/publish-extension.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
id: calculateVersion
2525
run: |
2626
APP_VERSION=`cat package.json | jq ".version" -M | sed 's/\"//g'`
27-
echo "::set-output name=AppVersion::$APP_VERSION"
27+
echo "AppVersion=$APP_VERSION" >> $GITHUB_OUTPUT
2828
echo "app version = v$APP_VERSION"
2929
- name: Build VSIX package
3030
run: npm run build -- -o vscode-string-manipulation.v${{ steps.calculateVersion.outputs.AppVersion }}.vsix

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "string-manipulation",
33
"displayName": "String Manipulation",
44
"description": "Format strings to camelize, dasherize, etc.",
5-
"version": "0.5.9",
5+
"version": "0.5.10",
66
"publisher": "marclipovsky",
77
"repository": "https://github.com/marclipovsky/vscode-string-manipulation",
88
"engines": {

0 commit comments

Comments
 (0)