-
Notifications
You must be signed in to change notification settings - Fork 0
91 lines (78 loc) · 2.21 KB
/
build-push-deploy.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
81
82
83
84
85
86
87
88
89
90
91
name: Build Push Deploy
on:
push:
branches:
- main
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 20
cache: yarn
- name: Install dependencies
run: |
yarn config set network-timeout 300000
yarn install --prefer-offline
- name: Build
continue-on-error: false
run: yarn build
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: dist
path: dist
retention-days: 30
push:
name: Push
needs: build
runs-on: ubuntu-latest
permissions:
contents: write
env:
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: dist
path: dist
- name: Push distribution
run: |
MSG="$(printf "Publish distribution\n[skip ci]")"
git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions[bot]@users.noreply.github.com"
git add dist/index.min.* -f
git diff-index --quiet HEAD || git commit -m "$MSG" --no-verify --signoff
git push origin $BRANCH_NAME
deploy:
name: Deploy
needs: build
runs-on: ubuntu-latest
permissions:
id-token: write
contents: read
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: dist
path: dist
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v4
with:
role-to-assume: ${{ secrets.AWS_GITHUB_ACTION_ROLE }}
aws-region: us-east-2
- name: Sync files to S3 bucket
run: |
PACKAGE_VERSION=$(npm pkg get version --workspaces=false | tr -d \")
aws s3 sync dist s3://cdn.zigurous.com/forge-react@$PACKAGE_VERSION/dist --delete --exclude "*.ts"