Release #8
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
# This workflow creates a release when a new tag is pushed to main | |
name: Release | |
on: | |
push: | |
tags: | |
- "*.*.*" | |
branches: | |
- auto_release_publish | |
jobs: | |
create-release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "20" | |
- name: Install project dependencies | |
run: npm ci | |
- name: Package Extension | |
run: npm run package | |
- name: Release | |
uses: softprops/action-gh-release@v2 | |
with: | |
name: ${{ github.ref }}-alpha | |
prerelease: true |