forked from samuel-p/sp-codes.de
migrated woodpecker to forgejo workflow
This commit is contained in:
parent
f2b63fee5c
commit
eec934afc1
3 changed files with 55 additions and 35 deletions
54
.forgejo/workflows/build-deploy.yml
Normal file
54
.forgejo/workflows/build-deploy.yml
Normal file
|
@ -0,0 +1,54 @@
|
|||
name: Build and Deploy Website
|
||||
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: Build Website
|
||||
runs-on: docker
|
||||
container:
|
||||
image: node:lts
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Install Dependencies
|
||||
run: npm install
|
||||
- name: Build Website
|
||||
run: npm run build
|
||||
- uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: build
|
||||
path: dist/
|
||||
deploy-dev:
|
||||
name: Deploy Dev Website
|
||||
runs-on: docker
|
||||
container:
|
||||
image: node:lts-alpine
|
||||
needs: [build]
|
||||
if: github.ref == 'refs/heads/develop'
|
||||
steps:
|
||||
- uses: actions/download-artifact@v3
|
||||
- name: Install Dependencies
|
||||
run: which lftp || ( apk --update add lftp )
|
||||
- name: Deploy Website
|
||||
run: lftp -e "set ftp:ssl-force true; set ssl:verify-certificate no; mirror -R ./build/ dev.sp-codes.de/; bye" -u $FTP_USERNAME,$FTP_PASSWORD $FTP_HOST
|
||||
env:
|
||||
FTP_HOST: ${{ secrets.FTP_HOST }}
|
||||
FTP_USERNAME: ${{ secrets.FTP_USERNAME }}
|
||||
FTP_PASSWORD: ${{ secrets.FTP_PASSWORD }}
|
||||
deploy:
|
||||
name: Deploy Website
|
||||
runs-on: docker
|
||||
container:
|
||||
image: node:lts-alpine
|
||||
needs: [build]
|
||||
if: github.ref == 'refs/heads/main'
|
||||
steps:
|
||||
- uses: actions/download-artifact@v3
|
||||
- name: Install Dependencies
|
||||
run: which lftp || ( apk --update add lftp )
|
||||
- name: Deploy Website
|
||||
run: lftp -e "set ftp:ssl-force true; set ssl:verify-certificate no; mirror -R ./build/ sp-codes.de/; bye" -u $FTP_USERNAME,$FTP_PASSWORD $FTP_HOST
|
||||
env:
|
||||
FTP_HOST: ${{ secrets.FTP_HOST }}
|
||||
FTP_USERNAME: ${{ secrets.FTP_USERNAME }}
|
||||
FTP_PASSWORD: ${{ secrets.FTP_PASSWORD }}
|
|
@ -1,34 +0,0 @@
|
|||
pipeline:
|
||||
build:
|
||||
image: node:lts
|
||||
commands:
|
||||
- npm install
|
||||
- npm run build
|
||||
deploy-dev:
|
||||
image: alpine
|
||||
secrets:
|
||||
- FTP_HOST
|
||||
- FTP_USERNAME
|
||||
- FTP_PASSWORD
|
||||
commands:
|
||||
- which lftp || ( apk --update add lftp )
|
||||
- lftp -e "set ftp:ssl-force true; set ssl:verify-certificate no; mirror -R ./dist/ dev.sp-codes.de/; bye" -u $FTP_USERNAME,$FTP_PASSWORD $FTP_HOST
|
||||
when:
|
||||
branch:
|
||||
- develop
|
||||
event:
|
||||
- push
|
||||
deploy:
|
||||
image: alpine
|
||||
secrets:
|
||||
- FTP_HOST
|
||||
- FTP_USERNAME
|
||||
- FTP_PASSWORD
|
||||
commands:
|
||||
- which lftp || ( apk --update add lftp )
|
||||
- lftp -e "set ftp:ssl-force true; set ssl:verify-certificate no; mirror -R ./dist/ sp-codes.de/; bye" -u $FTP_USERNAME,$FTP_PASSWORD $FTP_HOST
|
||||
when:
|
||||
branch:
|
||||
- main
|
||||
event:
|
||||
- push
|
|
@ -28,7 +28,7 @@
|
|||
"eleventy-sass": "^2.2.4",
|
||||
"glob": "^10.3.10",
|
||||
"minify": "^10.5.2",
|
||||
"postcss": "^8.4.31",
|
||||
"postcss": "^8.4.32",
|
||||
"sass": "^1.69.5",
|
||||
"uncss": "^0.17.3"
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue