Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: package visx

# on:
# push:
# branches:
# - main

permissions:
contents: read # for checkout

jobs:
release:
runs-on: ubuntu-latest
permissions:
contents: write # to be able to publish a GitHub release
issues: write # to be able to comment on released issues
pull-requests: write # to be able to comment on released pull requests
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
- run: npm ci
- run: npm audit signatures
- run: npx semantic-release --extends ./package.release.config.js
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# In case you want to publish to Visual Studio Marketplace
VSCE_PAT: ${{ secrets.VSCE_PAT }}
4 changes: 4 additions & 0 deletions AZURE-DEVOPS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
- doc on how to publish an extension: https://code.visualstudio.com/api/working-with-extensions/publishing-extension
- TidalCycles marketplace publisher page: https://marketplace.visualstudio.com/manage/publishers/tidalcycles
- from here, you can add other Azure users who can publish
- personal token page: https://<YOUR_USERNAME>.visualstudio.com/\_usersSettings/tokens
Loading
Loading