Skip to content

Support for Vite

Support for Vite #36

Workflow file for this run

# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
# For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages
name: npm Publish
on:
release:
types: [created]
jobs:
publish-npm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: jdx/mise-action@v2
- run: ./build_and_test.sh
shell: bash
env:
MISE_NODE_VERSION: 24
- name: Determine version from git tag
id: version
run: echo "tag=${GITHUB_REF#refs/*/}" >> "$GITHUB_OUTPUT"
- name: set version
run: |
./updateVersion.sh ${{ steps.version.outputs.tag }}
- uses: stefanzweifel/git-auto-commit-action@v7
with:
commit_message: ${{ steps.version.outputs.tag }}
branch: master
- name: publish
run: |
./build_and_test.sh
echo "//registry.npmjs.org/:_authToken=${NODE_AUTH_TOKEN}" >> .npmrc
npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
# publish-gpr:
# needs: build
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v6
# - uses: actions/setup-node@v6
# with:
# node-version: 12
# registry-url: https://npm.pkg.github.com/
# - run: npm ci
# - run: npm publish
# env:
# NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}