update deps
This commit is contained in:
@ -1,50 +1,52 @@
|
||||
name: schuelerzeitung-main
|
||||
name: schuelerzeitung-prod
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
prod-build:
|
||||
if: github.repository == 'gcg/schuelerzeitung' && github.event_name == 'push'
|
||||
if: gitea.repository == 'gcg/schuelerzeitung'
|
||||
runs-on: act-runner-user
|
||||
timeout-minutes: 5
|
||||
steps:
|
||||
- name: clone
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: pull
|
||||
run: |
|
||||
cd /opt/data/actions/schuelerzeitung-main
|
||||
git fetch --all
|
||||
git reset --hard origin/main
|
||||
- name: build
|
||||
run: npm i && hugo --minify --gc --baseURL "https://schuelerzeitung-gcg.de/"
|
||||
|
||||
run: |
|
||||
cd /opt/data/actions/schuelerzeitung-main
|
||||
rm -rf public
|
||||
NODE_ENV=production npm i && hugo --minify --gc --baseURL "https://schuelerzeitung-gcg.de/"
|
||||
- name: deploy
|
||||
run: |
|
||||
cd public
|
||||
cd /opt/data/actions/schuelerzeitung-main/public
|
||||
rsync -azr --delete ./ /opt/data/webdata/schuelerzeitung/
|
||||
|
||||
- name: notification
|
||||
uses: actions/telegram-action@main
|
||||
if: always()
|
||||
with:
|
||||
chat_id: ${{ secrets.TG_CHAT_ID }}
|
||||
token: ${{ secrets.TG_TOKEN }}
|
||||
include_commit_info: false
|
||||
test-build:
|
||||
if: github.repository == 'gcg/schuelerzeitung' && github.event_name == 'push'
|
||||
if: gitea.repository == 'gcg/schuelerzeitung'
|
||||
runs-on: act-runner-user
|
||||
timeout-minutes: 5
|
||||
steps:
|
||||
- name: clone
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: pull
|
||||
run: |
|
||||
cd /opt/data/actions/schuelerzeitung-main
|
||||
git fetch --all
|
||||
git reset --hard origin/main
|
||||
- name: build
|
||||
run: npm i && hugo --minify --gc --baseURL "https://test.schuelerzeitung-gcg.de/" --buildDrafts --buildFuture -d test
|
||||
|
||||
run: |
|
||||
cd /opt/data/actions/schuelerzeitung-main
|
||||
rm -rf test
|
||||
NODE_ENV=production npm i && hugo --minify --gc --baseURL "https://test.schuelerzeitung-gcg.de/" --buildDrafts --buildFuture -d test
|
||||
- name: deploy
|
||||
run: |
|
||||
cd test
|
||||
cd /opt/data/actions/schuelerzeitung-main/test
|
||||
rsync -azr --delete ./ /opt/data/webdata/schuelerzeitung-test/
|
Reference in New Issue
Block a user