From 505949680f8dfccfad68eaa3d288dacdd28afc83 Mon Sep 17 00:00:00 2001 From: Denys Konovalov Date: Wed, 20 Dec 2023 18:20:00 +0100 Subject: [PATCH] .gitea/workflows/dev.yaml aktualisiert --- .gitea/workflows/dev.yaml | 73 ++++++++++++++++++++------------------- 1 file changed, 37 insertions(+), 36 deletions(-) diff --git a/.gitea/workflows/dev.yaml b/.gitea/workflows/dev.yaml index 018b3a5c..5efffce4 100644 --- a/.gitea/workflows/dev.yaml +++ b/.gitea/workflows/dev.yaml @@ -1,36 +1,37 @@ -name: website-dev - -on: - push: - branches: - - dev - -defaults: - run: - working-directory: /opt/data/actions/gcg-website-dev - -jobs: - dev-build: - if: gitea.repository == 'gcg/gcg-website' - runs-on: act-runner-user - timeout-minutes: 5 - steps: - - name: pull - run: | - git pull - git reset --hard origin/dev - - name: build - run: | - rm -rf dev - hugo --minify --gc --baseURL "https://dev.cantorgymnasium.de/" --buildDrafts --buildFuture -d dev - - name: deploy - run: | - cd dev - pagefind_extended --site=. - rsync -azr --delete ./ /opt/data/webdata/gcg-website-dev/ - - name: notification - uses: actions/telegram-action@main - if: always() - with: - chat_id: ${{ secrets.TG_CHAT_ID }} - token: ${{ secrets.TG_TOKEN }} +name: website-dev + +on: + push: + branches: + - dev + +defaults: + run: + working-directory: /opt/data/actions/gcg-website-dev + +jobs: + dev-build: + if: gitea.repository == 'gcg/gcg-website' + runs-on: act-runner-user + timeout-minutes: 5 + steps: + - name: pull + run: | + git config --global --add safe.directory /opt/data/actions/gcg-website-dev + git pull + git reset --hard origin/dev + - name: build + run: | + rm -rf dev + hugo --minify --gc --baseURL "https://dev.cantorgymnasium.de/" --buildDrafts --buildFuture -d dev + - name: deploy + run: | + cd dev + pagefind_extended --site=. + rsync -azr --delete ./ /opt/data/webdata/gcg-website-dev/ + - name: notification + uses: actions/telegram-action@main + if: always() + with: + chat_id: ${{ secrets.TG_CHAT_ID }} + token: ${{ secrets.TG_TOKEN }}