Compare commits
No commits in common. "84e438511f6b45dd15f39a3ae22ccf8344c7de14" and "3b23cfe2fee93752b4712ee5db457f526d2a454c" have entirely different histories.
84e438511f
...
3b23cfe2fe
@ -1,42 +0,0 @@
|
||||
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