Skip to content

Update build.yml

Update build.yml #7

Workflow file for this run

name: Build
on:
push:
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: '18.x'
registry-url: 'https://registry.npmjs.org'
- uses: Swatinem/rust-cache@v2
- name: Check out code
uses: actions/checkout@v3
- name: Cargo
run: |
cargo install wasm-pack
- name: Increment version
run: |
git config --local user.name actions-user
git config --local user.email "actions@github.com"
npm version patch -m "Update patch version"
- name: Build
run: |
npm run build
- name: Test
run: |
npm run test
- name: Upload module
uses: actions/upload-artifact@v3
with:
name: conditions
path: |
pkg/*
if-no-files-found: error
- name: Commit new version
run: |
git push -f origin main
- name: Publish
run: |
cp package.json pkg/package.json
tar -czf pufferpanel-conditions.tar.gz pkg/*
npm publish pufferpanel-conditions.tar.gz
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}