[Project] Removed publish-site.yml

This commit is contained in:
Robert von Burg 2023-07-18 08:34:28 +02:00
parent de9204ac7a
commit c238601d8b
Signed by: eitch
GPG Key ID: 75DB9C85C74331F7
1 changed files with 0 additions and 33 deletions

View File

@ -1,33 +0,0 @@
name: hugo publish
on:
push:
branches:
- develop
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build-deploy:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: '0.80.0'
- name: Build
run: hugo --minify
- name: Commit the generated website and push to git repository
run: |
git config --global user.email "dev@strolch.li"
git config --global user.name "Strolch GitHub Actions Build"
git status
git add docs/
git commit -am "[AUTO] New version of website"
git push origin HEAD:develop