Skip to content

Merge pull request #32 from loupeteam/pull-updates #72

Merge pull request #32 from loupeteam/pull-updates

Merge pull request #32 from loupeteam/pull-updates #72

# 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://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages
name: Publish Tmplit
on:
push:
branches:
- main
- prelux/main
jobs:
publish-all:
runs-on: ubuntu-latest
strategy:
matrix:
packages: [src/HMI, src/template-gizmo, src/template-hmi]
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
registry-url: https://npm.pkg.github.com/
- uses: JS-DevTools/npm-publish@v2
id: publish
with:
token: ${{ secrets.GITHUB_TOKEN }}
registry: "https://npm.pkg.github.com"
package: ${{ matrix.packages }}
- if: ${{ steps.publish.outputs.type }}
run: echo "Version changed!"