Compare commits
3 Commits
3b23cfe2fe
...
84e438511f
Author | SHA1 | Date | |
---|---|---|---|
84e438511f | |||
ac37b5e869 | |||
cea66409ba |
42
.gitea/workflows/deploy.yaml
Normal file
42
.gitea/workflows/deploy.yaml
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
name: Deploy website
|
||||||
|
run-name: ${{ gitea.actor }} déploie 🚀
|
||||||
|
on: [push]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Install Node.js
|
||||||
|
uses: actions/setup-node@v4
|
||||||
|
with:
|
||||||
|
node-version: 20
|
||||||
|
cache: npm
|
||||||
|
|
||||||
|
- name: Install dependencies
|
||||||
|
run: npm install
|
||||||
|
|
||||||
|
- name: build
|
||||||
|
run: npm run build
|
||||||
|
|
||||||
|
- name: Upload Artifacts
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: build
|
||||||
|
path: 'build/'
|
||||||
|
overwrite: true
|
||||||
|
|
||||||
|
deploy:
|
||||||
|
needs: build
|
||||||
|
environment:
|
||||||
|
name: pls5618.com
|
||||||
|
url: https://pls5618.com
|
||||||
|
steps:
|
||||||
|
- name: deploy
|
||||||
|
uses: SamKirkland/FTP-Deploy-Action@v4.3.5
|
||||||
|
with:
|
||||||
|
server: pls5618.com
|
||||||
|
username: ${{ secrets.ftp_user }}
|
||||||
|
password: ${{ secrets.ftp_password }}
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user