File tree 1 file changed +11
-6
lines changed
1 file changed +11
-6
lines changed Original file line number Diff line number Diff line change @@ -21,26 +21,31 @@ jobs:
21
21
- name : Checkout
22
22
uses : actions/checkout@v4
23
23
24
+ - name : Install Node.js
25
+ uses : actions/setup-node@v4
26
+ with :
27
+ cache : npm
28
+
29
+ - name : Install dependencies
30
+ run : npm i
31
+
24
32
- name : Build
25
33
env :
26
34
RV_API_URL : ${{ vars.RV_API_URL }}
27
35
RV_GOOGLE_TAG_MANAGER_ID : ${{ vars.RV_GOOGLE_TAG_MANAGER_ID }}
28
36
RV_DMCA_GUID : ${{ vars.RV_DMCA_GUID }}
29
- run : |
30
- npm i
31
- npm run build
37
+ run : npm run build
32
38
33
39
- name : Deploy
40
+ id : deploy
34
41
uses : cloudflare/wrangler-action@v3
35
42
with :
36
43
apiToken : ${{ secrets.CLOUDFLARE_API_TOKEN }}
37
44
accountId : ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
38
45
command : pages deploy public --project-name=revanced-website
39
- id : deploy
40
46
41
47
- name : Comment deployment URL
42
48
if : ${{ github.event_name == 'pull_request' }}
43
49
uses : thollander/actions-comment-pull-request@v2
44
50
with :
45
- GITHUB_TOKEN : ${{ secrets.PULL_REQUESTS_WRITE }}
46
- message : Deployed at ${{ steps.deploy.outputs.pages-deployment-alias-url }}.
51
+ message : Deployed at ${{ steps.deploy.outputs.deployment-url }}.
You can’t perform that action at this time.
0 commit comments