We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 62117ea commit 146c78bCopy full SHA for 146c78b
1 file changed
.github/workflows/main.yml
@@ -8,12 +8,16 @@ jobs:
8
deploy:
9
runs-on: ubuntu-latest
10
steps:
11
- - uses: actions/checkout@v2
12
- - run: npm run install:all
13
- - run: npm run build:sidwebview
14
- - run: npm run build:charswebview
15
- # - uses: lannonbr/vsce-action@4.0.0
16
- # with:
17
- # args: "publish -p $VSCE_TOKEN"
18
- # env:
19
- # VSCE_TOKEN: ${{ secrets.VSCE_TOKEN }}
+ - uses: actions/checkout@v4
+ with:
+ fetch-depth: 0
+ - run: npm run install:all:ci
+ - name: Release
+ env:
+ HUSKY: 0
+ CI: true
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
20
+ # VSCE_PAT: ${{ secrets.VSCE_PAT }}
21
+ run: npx semantic-release
22
+ - id: versionSet
23
+ run: echo "tag_name=v"$(cat $VERSION_FILE)"" >> "$GITHUB_OUTPUT"
0 commit comments