This commit is contained in:
parent
297521efdc
commit
9bc0a9ee36
25
.gitea/workflows/develop-deploy.yml
Normal file
25
.gitea/workflows/develop-deploy.yml
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
name: Build Site
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- develop
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
Build-Site:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- name: Use Node.js
|
||||||
|
uses: actions/setup-node@v3
|
||||||
|
with:
|
||||||
|
node-version: '16.x'
|
||||||
|
- run: npm install
|
||||||
|
- run: npm run build
|
||||||
|
- name: Run sshpass commands
|
||||||
|
uses: matheusvanzan/sshpass-action@v2
|
||||||
|
with:
|
||||||
|
host : ${{ secrets.SSH_HOST }}
|
||||||
|
port: 69
|
||||||
|
user: ${{ secrets.SSH_USER }}
|
||||||
|
pass: ${{ secrets.SSH_PWD }}
|
||||||
|
run: ls -al
|
17
.gitea/workflows/main-deploy.yml
Normal file
17
.gitea/workflows/main-deploy.yml
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
name: Build Site
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
Build-Site:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- name: Use Node.js
|
||||||
|
uses: actions/setup-node@v3
|
||||||
|
with:
|
||||||
|
node-version: '16.x'
|
||||||
|
- run: npm install
|
||||||
|
- run: npm run build
|
18
.gitea/workflows/pr-build.yml
Normal file
18
.gitea/workflows/pr-build.yml
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
name: Build Site
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- 'feat/**'
|
||||||
|
- 'develop'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
Build-Site:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- name: Use Node.js
|
||||||
|
uses: actions/setup-node@v3
|
||||||
|
with:
|
||||||
|
node-version: '16.x'
|
||||||
|
- run: npm install
|
||||||
|
- run: npm run build
|
Loading…
Reference in New Issue
Block a user