Skip to content

Commit

Permalink
Merge pull request #29 from nextflow-io/open-vsx-registry
Browse files Browse the repository at this point in the history
Update publishing workflow to also publish to Open VSX Registry
  • Loading branch information
ewels authored Mar 27, 2024
2 parents f98ce0f + 128f05b commit efc410e
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 6 deletions.
23 changes: 18 additions & 5 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,22 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: npm install
- uses: lannonbr/[email protected]

- uses: actions/setup-node@v4
with:
node-version: 20
cache: "npm"

- name: npm clean install
run: npm ci

- name: Publish to Open VSX Registry
uses: HaaLeo/publish-vscode-extension@v1
with:
pat: ${{ secrets.OPEN_VSX_TOKEN }}

- name: Publish to Visual Studio Marketplace
uses: HaaLeo/publish-vscode-extension@v1
with:
args: "publish -p $VSCE_TOKEN"
env:
VSCE_TOKEN: ${{ secrets.VSCE_TOKEN }}
pat: ${{ secrets.VSCE_TOKEN }}
registryUrl: https://marketplace.visualstudio.com
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ All notable changes to the "nextflow" extension will be documented in this file.

Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.

## [0.3.3] - 2024-03-29

- Update publishing automation to also push to the Open VSX Registry.

## [0.3.2] - 2024-03-25
- Updated Nextflow logo

Expand Down
15 changes: 15 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "nextflow",
"displayName": "Nextflow",
"description": "Nextflow language support",
"version": "0.3.2",
"version": "0.3.3",
"publisher": "nextflow",
"repository": {
"type": "git",
Expand Down

0 comments on commit efc410e

Please sign in to comment.