Skip to content

Commit

Permalink
ci: publish automatically
Browse files Browse the repository at this point in the history
Closes #121
  • Loading branch information
barmac committed Oct 24, 2023
1 parent 26c75b0 commit 9422377
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
matrix:
os: [ macos-latest, ubuntu-latest, windows-latest ]
node-version: [ 16 ]
node-version: [ 20 ]

runs-on: ${{ matrix.os }}

Expand Down
43 changes: 43 additions & 0 deletions .github/workflows/RELEASE.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
on:
push:
branches:
- main
name: release
jobs:
release-please:
outputs:
release_created: ${{ steps.release.outputs.release_created }}
permissions:
contents: write # to create release commit (google-github-actions/release-please-action)
pull-requests: write # to create release PR (google-github-actions/release-please-action)

runs-on: ubuntu-latest
steps:
- uses: google-github-actions/release-please-action@v3
id: release
with:
token: ${{ secrets.GITHUB_TOKEN }}
release-type: node
pull-request-title-pattern: 'chore: release v${version}'
changelog-types: '[{"type":"feat","section":"Features","hidden":false},{"type":"fix","section":"Bug Fixes","hidden":false},{"type":"deps","section":"Dependency Updates","hidden":false}]'
changelog-notes-type: github

publish:
needs: release-please
if: ${{ needs.release-please.outputs.release_created }}

runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 20
cache: 'npm'
- name: Install dependencies
run: npm ci
- run: npx @vscode/vsce publish
env:
VSCE_PAT: ${{ secrets.MARKETPLACE_TOKEN }}

0 comments on commit 9422377

Please sign in to comment.