Skip to content

Commit

Permalink
Merge pull request #26 from nextflow-io/automate-publish
Browse files Browse the repository at this point in the history
Add GitHub action to automatically publish extension
  • Loading branch information
ewels authored Mar 22, 2024
2 parents f961dc3 + 99ce0db commit f98ce0f
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Deploy Extension

on:
workflow_dispatch:
push:
branches:
- master

jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: npm install
- uses: lannonbr/[email protected]
with:
args: "publish -p $VSCE_TOKEN"
env:
VSCE_TOKEN: ${{ secrets.VSCE_TOKEN }}

0 comments on commit f98ce0f

Please sign in to comment.