From c238601d8b5d6e0497ecf08ab6d93ca39f55902e Mon Sep 17 00:00:00 2001 From: Robert von Burg Date: Tue, 18 Jul 2023 08:34:28 +0200 Subject: [PATCH] [Project] Removed publish-site.yml --- .github/workflows/publish-site.yml | 33 ------------------------------ 1 file changed, 33 deletions(-) delete mode 100644 .github/workflows/publish-site.yml diff --git a/.github/workflows/publish-site.yml b/.github/workflows/publish-site.yml deleted file mode 100644 index 3f074ac..0000000 --- a/.github/workflows/publish-site.yml +++ /dev/null @@ -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 -