-
Notifications
You must be signed in to change notification settings - Fork 2
80 lines (69 loc) · 1.86 KB
/
push.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
name: 'Push to main 🚀'
on:
push:
branches:
- main
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
upload:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/build
- uses: actions/upload-pages-artifact@v1
with:
path: src/.vuepress/dist
# deploy-s3:
# needs: upload
# runs-on: ubuntu-22.04
# steps:
# - uses: actions/download-artifact@v3
# with:
# name: github-pages
#
# - name: 'Untar artifact'
# shell: bash
# run: |
# mkdir artifact
# tar -xf artifact.tar -C artifact
#
# - uses: myparcelnl/actions/aws-setup@v3
# with:
# region: ${{ secrets.AWS_DEFAULT_REGION }}
# access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
# secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
#
# - uses: myparcelnl/actions/aws-s3-sync@v3
# with:
# source: artifact
# bucket: ${{ secrets.S3_BUCKET }}
# distribution-id: ${{ secrets.CLOUDFRONT_DISTRIBUTION_ID }}
# delete: true
deploy-ghp:
needs: upload
runs-on: ubuntu-22.04
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- id: deployment
uses: actions/deploy-pages@v1
rebase-prs:
name: 'Rebase open pull requests'
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: myparcelnl/actions/setup-app-credentials@v3
id: credentials
with:
app-id: ${{ secrets.MYPARCEL_APP_ID }}
private-key: ${{ secrets.MYPARCEL_APP_PRIVATE_KEY }}
- uses: peter-evans/rebase@v2
with:
token: ${{ steps.credentials.outputs.token }}