Upgrade node runtime to v20 #14
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
name: Update major version | |
on: | |
release: | |
types: [ published ] | |
jobs: | |
tagging: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.release.tag_name }} | |
- name: Install deps and build | |
run: npm ci && npm run prepare | |
- name: Update major version | |
uses: JasonEtco/build-and-tag-action@dd5e4991048c325f6d85b4155e586fc211c644da | |
env: | |
GITHUB_TOKEN: ${{ github.token }} |