@tnlmedia/inkmagine-gui 0.1.0 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tnlmedia/inkmagine-gui",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "description": "Inkmagine GUI components",
5
5
  "author": "TNL Media Group <to.it@tnlmediagene.com>",
6
6
  "keywords": [
@@ -1,23 +0,0 @@
1
- name: Publish to npmjs
2
- on:
3
- push:
4
- tags:
5
- - '*'
6
- jobs:
7
- publish:
8
- runs-on: ubuntu-latest
9
- steps:
10
- - uses: actions/checkout@v4
11
- - uses: actions/setup-node@v4
12
- with:
13
- node-version: 22
14
- registry-url: https://registry.npmjs.org/
15
- - name: Update package.json version
16
- run: |
17
- TAG=$(git tag --points-at HEAD | tail -n 1)
18
- sed -i "s/\"version\": \".*\"/\"version\": \"$TAG\"/g" package.json
19
- cat package.json
20
- - run: npm ci
21
- - run: npm publish --access public
22
- env:
23
- NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}