Skip to content

feat: v0.0.2 — dev/prod mode, compliance overhaul, memory 4-col forma… #3

feat: v0.0.2 — dev/prod mode, compliance overhaul, memory 4-col forma…

feat: v0.0.2 — dev/prod mode, compliance overhaul, memory 4-col forma… #3

Workflow file for this run

name: Publish to GitHub Packages
on:
release:
types: [created]
push:
tags:
- 'v*.*.*'
jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
registry-url: 'https://npm.pkg.github.com'
scope: '@vextjs'
- name: Publish
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}