Skip to content

v1.0.3 – Upgrade action to node20 #4

v1.0.3 – Upgrade action to node20

v1.0.3 – Upgrade action to node20 #4

Workflow file for this run

name: Publish
on:
release:
types: [published, edited]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
ref: ${{ github.event.release.tag_name }}
- name: Set up Node
uses: actions/setup-node@v2
- name: Install deps and build
run: npm ci && npm run build
- uses: JasonEtco/build-and-tag-action@v2
env:
GITHUB_TOKEN: ${{ github.token }}