ffs
Some checks failed
/ build (push) Failing after 1m12s

This commit is contained in:
Christoph Haas 2025-12-20 21:45:53 +01:00
parent a63a724457
commit decbf1cc8c

View file

@ -5,7 +5,7 @@ on:
jobs:
build:
runs-on: docker
environment: ${{ env.FORGEJO_REF_NAME }}
#environment: ${{ env.FORGEJO_REF_NAME }}
steps:
- name: Checkout code
@ -21,3 +21,27 @@ jobs:
- name: Build Astro project
run: npm run build
- name: Deploy dist to dist-${{ env.FORGEJO_REF_NAME }}
run: |
git config user.name "forgejo-actions[bot]"
git config user.email "forgejo-actions[bot]@users.noreply.local"
git checkout --orphan dist-stage
git rm -rf .
git add dist
git commit -m "Update dist"
git push \
https://x-access-token:${{ secrets.FORGEJO_TOKEN }}@${{ github.server_url }}/${{ github.repository }} \
temp-build:dist-${{ env.FORGEJO_REF_NAME }} \
--force
# - name: Trigger deployment webhook
# env:
# DEPLOY_WEBHOOK: ${{ secrets.COOLIFY_STAGE_DEPLOY_WEBHOOK }}
# DEPLOY_TOKEN: ${{ secrets.COOLIFY_STAGE_DEPLOY_TOKEN }}
# run: |
# curl -v "$DEPLOY_WEBHOOK" \
# --header "Authorization: Bearer $DEPLOY_TOKEN"