gg.easy.airship 0.1.2161 → 0.1.2162

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.
@@ -44,11 +44,24 @@ jobs:
44
44
  environment: 'platform-production'
45
45
  runs-on: ubuntu-latest
46
46
  steps:
47
+ - name: "Setup Git Config"
48
+ run: |
49
+ git config --global user.email "actions@github.com"
50
+ git config --global user.name "GitHub Actions"
51
+
52
+ - name: Generate a token
53
+ id: generate-token
54
+ uses: actions/create-github-app-token@v1
55
+ with:
56
+ app-id: ${{ secrets.DEPLOY_APP_ID }}
57
+ private-key: ${{ secrets.DEPLOY_APP_PRIVATE_KEY }}
58
+ owner: ${{ github.repository_owner }}
59
+
47
60
  - name: Checkout Airship Template
48
61
  uses: actions/checkout@v4
49
62
  with:
50
63
  repository: easy-games/airship-template
51
- token: ${{ secrets.PULL_PACKAGE_PAT }}
64
+ token: ${{ steps.generate-token.outputs.token }}
52
65
  lfs: true
53
66
  path: airship-template
54
67
  ref: refs/heads/main
@@ -57,7 +70,7 @@ jobs:
57
70
  - name: Update Template Version
58
71
  uses: actions/github-script@v7
59
72
  with:
60
- github-token: ${{ secrets.PULL_PACKAGE_PAT }}
73
+ github-token: ${{ steps.generate-token.outputs.token }}
61
74
  script: |
62
75
  const fs = require('fs');
63
76
  const path = require('path');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gg.easy.airship",
3
- "version": "0.1.2161",
3
+ "version": "0.1.2162",
4
4
  "displayName": "Airship",
5
5
  "unity": "2021.3",
6
6
  "unityRelease": "12f1",