We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 208244d commit d761aa3Copy full SHA for d761aa3
.github/workflows/pr-preview.yml
@@ -11,9 +11,16 @@ jobs:
11
pr-preview:
12
runs-on: ubuntu-latest
13
steps:
14
+ - name: Create app token
15
+ uses: actions/create-github-app-token@v1
16
+ id: app-token
17
+ with:
18
+ app-id: ${{ vars.THEOPLAYER_BOT_APP_ID }}
19
+ private-key: ${{ secrets.THEOPLAYER_BOT_PRIVATE_KEY }}
20
- name: Checkout
21
uses: actions/checkout@v4
22
with:
23
+ token: ${{ steps.app-token.outputs.token }}
24
fetch-depth: 1
25
submodules: true
26
# Build the website
@@ -42,6 +49,7 @@ jobs:
42
49
- name: Deploy preview
43
50
uses: rossjrw/pr-preview-action@v1
44
51
52
45
53
source-dir: ./build/
46
54
preview-branch: gh-pages
47
55
umbrella-dir: pr-preview
0 commit comments