Skip to content

Commit

Permalink
fix publishing
Browse files Browse the repository at this point in the history
update workflow to fix publishing on Marketplace
  • Loading branch information
isc-rsingh committed Mar 15, 2023
1 parent 5c852a0 commit 0e0948c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,24 +121,24 @@ jobs:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
ref: master
token: ${{ secrets.TOKEN }}
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v3
with:
name: meta
path: .
- name: Use Node.js
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: 12.x
node-version: 16
- name: Prepare build
id: set-version
run: |
VERSION=`cat .version`
NEXT_VERSION=`cat .version | awk -F. '/[0-9]+\./{$NF++;print}' OFS=.`
echo ::set-output name=name::`cat .name`
echo ::set-output name=name::`cat .name` >> $GITHUB_OUTPUT
tmp=$(mktemp)
git config --global user.name 'ProjectBot'
git config --global user.email '[email protected]'
Expand Down

0 comments on commit 0e0948c

Please sign in to comment.