@glorious-cinema-mc/core 1.0.0 → 1.0.1

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.
@@ -0,0 +1,38 @@
1
+ # name: Publish
2
+ # on:
3
+ # push:
4
+ # branches: -main
5
+ # jobs:
6
+ # publish:
7
+ # runs-on: ubuntu-latest
8
+ # steps:
9
+ # - uses: actions/checkout@v4
10
+ # - uses: actions/setup-node@v4
11
+ # with:
12
+ # node-version: 20
13
+ # registry-url: 'https://registry.npmjs.org'
14
+ # - run: npm publish
15
+ # env:
16
+ # NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
17
+
18
+ name: Publish Package to npmjs
19
+ on:
20
+ push:
21
+ branches: main
22
+ jobs:
23
+ build:
24
+ runs-on: ubuntu-latest
25
+ permissions:
26
+ contents: read
27
+ id-token: write
28
+ steps:
29
+ - uses: actions/checkout@v5
30
+ # Setup .npmrc file to publish to npm
31
+ - uses: actions/setup-node@v4
32
+ with:
33
+ node-version: "20.x"
34
+ registry-url: "https://registry.npmjs.org"
35
+ - run: npm ci
36
+ - run: npm publish
37
+ env:
38
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glorious-cinema-mc/core",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Core utilities and shared setup",
5
5
  "author": {
6
6
  "name": "Glorious99"