Initial Release
This commit is contained in:
.gitea/workflows
.gitignoreLICENSEarchetypes
assets
config.tomlcontent/de
blog
_index.mdbuchempfehlung-2023-01.webpbuchempfehlung-2023-1.mdhoroskop-2023-1.mdmodulkurs-2023.mdpreview.webpumweltschutz-101-2023-1.md
page
i18n
layouts
package-lock.jsonpackage.jsonstatic
blist-logo-de.pngblist-logo.pngblog-post.jpgfavicon.svgfeatured-placeholder.jpg
fonts
inter-v3-latin-300.eotinter-v3-latin-300.svginter-v3-latin-300.ttfinter-v3-latin-300.woffinter-v3-latin-300.woff2inter-v3-latin-500.eotinter-v3-latin-500.svginter-v3-latin-500.ttfinter-v3-latin-500.woffinter-v3-latin-500.woff2inter-v3-latin-700.eotinter-v3-latin-700.svginter-v3-latin-700.ttfinter-v3-latin-700.woffinter-v3-latin-700.woff2
grafik-circle.webplogo.pngpicture.jpg
66
.gitea/workflows/prod.yml
Normal file
66
.gitea/workflows/prod.yml
Normal file
@ -0,0 +1,66 @@
|
||||
name: schuelerzeitung-main
|
||||
|
||||
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'
|
||||
runs-on: act-runner-user
|
||||
timeout-minutes: 5
|
||||
steps:
|
||||
- name: clone
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
submodules: true
|
||||
|
||||
- name: setup hugo
|
||||
uses: https://github.com/peaceiris/actions-hugo@v2
|
||||
with:
|
||||
hugo-version: '0.111.2'
|
||||
extended: true
|
||||
|
||||
- name: build
|
||||
run: npm i && hugo --minify --gc --baseURL "https://schuelerzeitung-gcg.de/"
|
||||
|
||||
- name: deploy
|
||||
run: |
|
||||
cd public
|
||||
rsync -azr --delete ./ /opt/data/webdata/schuelerzeitung/
|
||||
|
||||
- name: notification
|
||||
uses: https://github.com/yamaks2306/telegram-notification@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'
|
||||
runs-on: act-runner-user
|
||||
timeout-minutes: 5
|
||||
steps:
|
||||
- name: clone
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
submodules: true
|
||||
|
||||
- name: setup hugo
|
||||
uses: https://github.com/peaceiris/actions-hugo@v2
|
||||
with:
|
||||
hugo-version: '0.111.2'
|
||||
extended: true
|
||||
|
||||
- name: build
|
||||
run: npm i && hugo --minify --gc --baseURL "https://test.schuelerzeitung-gcg.de/" --buildDrafts --buildFuture -d test
|
||||
|
||||
- name: deploy
|
||||
run: |
|
||||
cd test
|
||||
rsync -azr --delete ./ /opt/data/webdata/schuelerzeitung-test/
|
Reference in New Issue
Block a user