File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -15,18 +15,26 @@ jobs:
15
15
steps :
16
16
- name : Checkout
17
17
uses : actions/checkout@v2
18
+
19
+ - uses : navikt/github-app-token-generator@2d70c12368d1958155af4d283f9f21c9a2a8cb98
20
+ id : get-token
21
+ with :
22
+ private-key : ${{ secrets.TOKENS_PRIVATE_KEY }}
23
+ app-id : ${{ secrets.TOKENS_APP_ID }}
18
24
19
25
- name : Checkout @netlify/wait-for-deploy-action
20
26
uses : actions/checkout@v2
21
27
with :
22
28
repository : netlify/wait-for-deploy-action
23
- token : ${{ secrets.PKG_RELEASE_TOKEN }} # token exposed to all Netlify repos
29
+ token : ${{ steps.get-token.outputs.token }} # token exposed to all Netlify repos
24
30
path : ./netlify-actions/wait-for-netlify-deploy
31
+
25
32
- name : Wait for Netlify Deploy
26
33
id : deploy
27
34
uses : ./netlify-actions/wait-for-netlify-deploy
28
35
with :
29
36
site-name : netlify-plugin-nextjs-demo
37
+
30
38
- name : Deploy successful
31
39
if : ${{ steps.deploy.outputs.origin-url }}
32
40
run : echo ${{ steps.deploy.outputs.origin-url }}
You can’t perform that action at this time.
0 commit comments