Skip to content

Commit 0e0948c

Browse files
committed
fix publishing
update workflow to fix publishing on Marketplace
1 parent 5c852a0 commit 0e0948c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/main.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -121,24 +121,24 @@ jobs:
121121
runs-on: ubuntu-latest
122122
needs: build
123123
steps:
124-
- uses: actions/checkout@v2
124+
- uses: actions/checkout@v3
125125
with:
126126
ref: master
127127
token: ${{ secrets.TOKEN }}
128-
- uses: actions/download-artifact@v2
128+
- uses: actions/download-artifact@v3
129129
with:
130130
name: meta
131131
path: .
132132
- name: Use Node.js
133-
uses: actions/setup-node@v1
133+
uses: actions/setup-node@v3
134134
with:
135-
node-version: 12.x
135+
node-version: 16
136136
- name: Prepare build
137137
id: set-version
138138
run: |
139139
VERSION=`cat .version`
140140
NEXT_VERSION=`cat .version | awk -F. '/[0-9]+\./{$NF++;print}' OFS=.`
141-
echo ::set-output name=name::`cat .name`
141+
echo ::set-output name=name::`cat .name` >> $GITHUB_OUTPUT
142142
tmp=$(mktemp)
143143
git config --global user.name 'ProjectBot'
144144
git config --global user.email '[email protected]'

0 commit comments

Comments
 (0)