com.puzzlescapegames.services 1.4.4 → 1.4.5

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,24 @@
1
+ name: Publish Package
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - main
7
+
8
+ jobs:
9
+ publish:
10
+ runs-on: ubuntu-latest
11
+ permissions:
12
+ id-token: write # Required for OIDC
13
+ contents: read
14
+ steps:
15
+ - uses: actions/checkout@v6
16
+ - uses: actions/setup-node@v6
17
+ with:
18
+ node-version: '24'
19
+ registry-url: 'https://registry.npmjs.org'
20
+ package-manager-cache: false # never use caching in release builds
21
+ - run: npm install
22
+ - run: npm ci
23
+ - run: npm run build --if-present
24
+ - run: npm publish
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name" : "com.puzzlescapegames.services",
3
3
  "displayName" : "Puzzlescape Games Services",
4
- "version" : "1.4.4",
4
+ "version" : "1.4.5",
5
5
  "author" : "Puzzlescape Games",
6
6
  "description" : "Common services.",
7
7
  "repository": {
@@ -1,22 +0,0 @@
1
- name: Puzzlescape Package
2
-
3
- on:
4
- push:
5
- branches:
6
- - main
7
-
8
- jobs:
9
- publish-gpr:
10
- runs-on: ubuntu-latest
11
- permissions:
12
- packages: write
13
- contents: read
14
- steps:
15
- - uses: actions/checkout@v3
16
- - uses: actions/setup-node@v3
17
- with:
18
- node-version: '16.x'
19
- - run: npm install
20
- - run: npm publish
21
- env:
22
- NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}