Merge upstream '0.8.1'; update version to 0.8.99-avx1 #3
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
--- | |
# Github action for publishing releases. | |
# To test locally via `act`: | |
# | |
# act -j release-job -e <(echo '{ "ref": "refs/tags/vscode-bazel-v99.99.99" }' ) | |
# | |
name: release | |
on: | |
push: | |
tags: | |
- "vscode-bazel-**" | |
# This is only for local testing | |
workflow_dispatch: | |
inputs: | |
branch: | |
type: "string" | |
jobs: | |
release-job: | |
name: "bazel-vscode-release" | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
- run: npm install -g @vscode/vsce | |
- run: npm ci | |
- run: vsce package | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
with: | |
files: vscode-bazel-*.vsix |