-
Notifications
You must be signed in to change notification settings - Fork 0
70 lines (67 loc) · 2.3 KB
/
Copy pathci.yaml
File metadata and controls
70 lines (67 loc) · 2.3 KB
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
name: Metacity Website CI
on:
push:
branches: [release, dev]
pull_request:
branches: [dev]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: 'Setup Node.js'
uses: 'actions/setup-node@v3'
with:
node-version: 18
- name: Install dependencies
run: |
npm i
- name: Build library
run: |
npm run build
tag-and-release:
runs-on: ubuntu-latest
if: github.event_name == 'push' && contains(github.ref, 'release')
needs: build
steps:
- uses: actions/checkout@v3
- name: 'Setup Node.js'
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install dependencies
run: |
npm i
- name: 'Get release version'
run: |
CURRENT_VERSION=$(node -p "require('./package.json').version")
echo "Current version: $CURRENT_VERSION"
echo "CURRENT_VERSION=v$CURRENT_VERSION" >> $GITHUB_ENV
- name: Build library
run: |
npm run build
- name: Create Release ZIP file
run: |
zip -r website.zip dist
- uses: rickstaa/action-create-tag@v1
with:
tag: ${{ env.CURRENT_VERSION }}
- uses: ncipollo/release-action@v1
with:
artifacts: 'website.zip'
token: ${{ secrets.GITHUB_TOKEN }}
generateReleaseNotes: true
tag: ${{ env.CURRENT_VERSION }}
- name: Deploying to server
uses: appleboy/ssh-action@v0.1.10
with:
host: ${{ secrets.SERVER_HOST }}
username: ${{ secrets.SERVER_USERNAME }}
key: ${{ secrets.SERVER_SSH_KEY }}
port: ${{ secrets.PORT }}
script: |
rm -rf Website
git clone https://github.com/MetacityTools/Website.git
cd Website
npm i
npm run build