-
Notifications
You must be signed in to change notification settings - Fork 0
54 lines (51 loc) · 1.63 KB
/
static.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
name: Deploy static site
on:
push:
branches: ["master","feat/*","fix/*"]
workflow_dispatch:
# Allow one concurrent deployment
concurrency:
group: "static"
cancel-in-progress: true
jobs:
deploy:
environment:
name: wallet
url: ${{ steps.clean_branch.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
check-latest: true
node-version: 20
cache: 'npm'
- run: npm ci
- name: Get clean branch name
id: clean_branch
env:
REPLACE_SLASH: "/"
WITH_DASH: "-"
BASE_DOMAIN: ${{ vars.BASE_DOMAIN }}
run: |
export BRANCH=${GITHUB_REF_NAME//$REPLACE_SLASH/$WITH_DASH}
export PAGE_URL=https://$BRANCH.$BASE_DOMAIN/
echo "branch=$BRANCH" >> "$GITHUB_OUTPUT"
echo "page_url=$PAGE_URL" >> "$GITHUB_OUTPUT"
echo "name=page_url::$PAGE_URL" >> $GITHUB_OUTPUT
- run: npm run deploy
id: run_deploy
env:
PAGE_URL: ${{ steps.clean_branch.outputs.page_url }}
GITHUB_REF_NAME: ${{ github.ref_name }}
GITHUB_OUTPUT: $GITHUB_OUTPUT
- uses: bnnanet/github-actions-rsync@master
with:
RSYNC_OPTIONS: -avzr --delete --exclude '.git*'
RSYNC_SOURCE: ./dist/
RSYNC_TARGET: ~/branch/${{ steps.clean_branch.outputs.branch }}
env:
SSH_PRIVATE_KEY: ${{secrets.SSH_PRIVATE_KEY}}
SSH_USERNAME: ${{secrets.SSH_USERNAME}}
SSH_HOSTNAME: ${{secrets.SSH_HOSTNAME}}
SSH_CONFIG: ${{secrets.SSH_CONFIG}}