File tree Expand file tree Collapse file tree 2 files changed +11
-10
lines changed Expand file tree Collapse file tree 2 files changed +11
-10
lines changed Original file line number Diff line number Diff line change 43
43
run : npm ci
44
44
- name : Build
45
45
run : npm run build
46
- - name : ' Upload Artifact'
46
+ - name : " Upload Artifact"
47
47
uses : actions/upload-artifact@v3
48
48
with :
49
49
path : |
57
57
needs : build
58
58
strategy :
59
59
matrix :
60
- node : [ 16, 18, 20 ]
60
+ node : [16, 18, 20]
61
61
fail-fast : false
62
62
name : Test Node ${{ matrix.node }}
63
63
steps :
@@ -124,34 +124,35 @@ jobs:
124
124
test_and_contribute :
125
125
runs-on : ubuntu-latest
126
126
name : Branch protection
127
- needs : [' test', ' lint' ]
127
+ needs : [" test", " lint" ]
128
128
steps :
129
129
- run : true
130
130
131
131
publish :
132
132
runs-on : ubuntu-latest
133
133
name : Publish (NPM)
134
- needs : [' build', ' test' ]
134
+ needs : [" build", " test" ]
135
135
if : ${{ github.ref == 'refs/heads/main' || github.event_name == 'release' }}
136
136
permissions :
137
137
id-token : write
138
138
steps :
139
139
- uses : actions/checkout@v4
140
140
with :
141
- fetch-depth : 2
141
+ fetch-depth : 2
142
142
- name : Setup node
143
143
uses : actions/setup-node@v3
144
144
with :
145
145
node-version : 20
146
146
check-latest : false
147
- registry-url : ' https://registry.npmjs.org'
148
- - name : ' Download Artifacts'
147
+ registry-url : " https://registry.npmjs.org"
148
+ - name : " Download Artifacts"
149
149
uses : actions/download-artifact@v3
150
150
- name : Rsync Artifacts
151
151
run : rsync -a artifact/ packages
152
152
- name : Publish
153
153
run : npm run publish
154
154
env :
155
- # ADAPTER_NEXTJS_NPM_TOKEN: ${{ secrets.ADAPTER_NEXTJS_NPM_TOKEN }}
155
+ ADAPTER_NEXTJS_NPM_TOKEN : ${{ secrets.ADAPTER_NEXTJS_NPM_TOKEN }}
156
+ ADAPTER_ANGULAR_NPM_TOKEN : ${{ secrets.ADAPTER_ANGULAR_NPM_TOKEN }}
156
157
# FIREBASE_FRAMEWORKS_NPM_TOKEN: ${{ secrets.FIREBASE_FRAMEWORKS_NPM_TOKEN }}
157
158
NODE_AUTH_TOKEN : ${{ secrets.PERSONAL_NPM_TOKEN }}
Original file line number Diff line number Diff line change @@ -5,9 +5,9 @@ const { join } = require("path");
5
5
const { filteredLernaList, versionFromRef, shortSHA, prerelease } = require ( "./github.js" ) ;
6
6
7
7
const wombatDressingRoomTokens = new Map ( [
8
- // Disabling this until I can get wombat access to this org
9
8
// ['firebase-frameworks', process.env.FIREBASE_FRAMEWORKS_NPM_TOKEN],
10
- // ['@apphosting/adapter-nextjs', process.env.ADAPTER_NEXTJS_NPM_TOKEN],
9
+ [ "@apphosting/adapter-nextjs" , process . env . ADAPTER_NEXTJS_NPM_TOKEN ] ,
10
+ [ "@apphosting/adapter-angular" , process . env . ADAPTER_ANGULAR_NPM_TOKEN ] ,
11
11
] ) ;
12
12
13
13
wombatDressingRoomTokens . forEach ( ( token , pkg ) => {
You can’t perform that action at this time.
0 commit comments