parent
a63a724457
commit
decbf1cc8c
1 changed files with 25 additions and 1 deletions
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue