Release 2.4.1 #17
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
release: | |
types: [prereleased, released] | |
name: Deploy Extension | |
jobs: | |
publish-extension: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
## make sure this corresponds with the version in test.yml | |
node-version: latest | |
- run: yarn install --immutable --immutable-cache --check-cache | |
- name: Package Extension | |
id: packageExtension | |
uses: HaaLeo/publish-vscode-extension@v1 | |
with: | |
pat: stub | |
dryRun: true | |
preRelease: ${{ github.event.action == 'prereleased' }} | |
yarn: true | |
## Make sure the artifact is added to the release. | |
- name: Upload extension vsix to workflow artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: haskell-${{ github.event.release.tag_name }}.vsix | |
path: ${{ steps.packageExtension.outputs.vsixPath }} | |
## If this is a release job, publish to VSCode Marketplace, | |
## otherwise publish a pre-release to VSCode Marketplace | |
- name: Publish to Visual Studio Marketplace | |
id: publishToVSMarketplace | |
uses: HaaLeo/publish-vscode-extension@v1 | |
with: | |
pat: ${{ secrets.VS_MARKETPLACE_TOKEN }} | |
registryUrl: https://marketplace.visualstudio.com | |
extensionFile: ${{ steps.packageExtension.outputs.vsixPath }} | |
yarn: true | |
preRelease: ${{ github.event.action == 'prereleased' }} | |
## If this is a release job, publish to VSX Marketplace, | |
## otherwise publish a pre-release to VSX Marketplace | |
- name: Publish to Open VSX Registry | |
id: publishToOpenVSX | |
continue-on-error: true | |
uses: HaaLeo/publish-vscode-extension@v1 | |
with: | |
pat: ${{ secrets.OPEN_VSX_TOKEN }} | |
extensionFile: ${{ steps.packageExtension.outputs.vsixPath }} | |
yarn: true | |
preRelease: ${{ github.event.action == 'prereleased' }} |