5 Commits

Author SHA1 Message Date
zihluwang a4794e7273 Merge pull request 'ci: use scp/ssh instead of upload-artifact for Gitea Actions compatibility' (#6) from develop into main
Build and Deploy / Build release archive (release) Successful in 46s
Build and Deploy / Upload to Gitea Release (release) Failing after 5s
Build and Deploy / Deploy to onixbyte.cn (release) Failing after 10s
Reviewed-on: https://git.onixbyte.com/onixbyte/delta-force-guide-web/pulls/6
2026-06-16 01:36:07 +08:00
siujamo 04a282dd5e Merge pull request 'ci: use node 24 in build workflow' (#4) from develop into main
Build and Deploy / Build release archive (release) Failing after 35s
Build and Deploy / Upload to Gitea Release (release) Has been skipped
Build and Deploy / Deploy to onixbyte.cn (release) Has been skipped
Reviewed-on: https://git.onixbyte.com/onixbyte/delta-force-guide-web/pulls/4
2026-06-15 17:03:07 +08:00
siujamo 9145fabb2b Merge pull request 'v1.4.0' (#3) from develop into main
Build and Deploy / Build release archive (release) Failing after 16s
Build and Deploy / Upload to Gitea Release (release) Has been skipped
Build and Deploy / Deploy to onixbyte.cn (release) Has been skipped
Reviewed-on: https://git.onixbyte.com/onixbyte/delta-force-guide-web/pulls/3
2026-06-15 16:47:20 +08:00
siujamo f98737906f Merge pull request 'v1.4.0' (#2) from develop into main
Reviewed-on: https://git.onixbyte.com/onixbyte/delta-force-guide-web/pulls/2
2026-06-15 16:34:37 +08:00
siujamo 0f17374002 Merge pull request 'ci: migrate release workflow from GitHub Actions to Gitea Actions' (#1) from develop into main
Reviewed-on: https://git.onixbyte.com/onixbyte/delta-force-guide-web/pulls/1
2026-06-15 09:34:13 +08:00
2 changed files with 58 additions and 45 deletions
+25 -45
View File
@@ -30,12 +30,15 @@ jobs:
- name: Build release archive
run: pnpm build:tar
- name: Upload build artifact
uses: maxsargentdev/gitea-upload-artifact@v4
- name: Upload artifact to server
uses: appleboy/scp-action@v0.1.7
with:
name: dist-archive
path: dist.tar.gz
retention-days: 1
host: ${{ vars.DEPLOY_HOST }}
username: ${{ vars.DEPLOY_USER }}
port: ${{ vars.DEPLOY_PORT }}
key: ${{ secrets.DEPLOY_SSH_KEY }}
source: "dist.tar.gz"
target: "/tmp/dist.tar.gz"
upload-release-asset:
name: Upload to Gitea Release
@@ -43,22 +46,25 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download build artifact
uses: christopherHX/gitea-download-artifact@v4
- name: Download artifact from server
uses: appleboy/ssh-action@v1.0.3
with:
name: dist-archive
- name: Upload to Gitea Release
run: |
host: ${{ vars.DEPLOY_HOST }}
username: ${{ vars.DEPLOY_USER }}
port: ${{ vars.DEPLOY_PORT }}
key: ${{ secrets.DEPLOY_SSH_KEY }}
command: |
set -e
RELEASE_ID=$(jq -r '.release.id' "$GITEA_EVENT_PATH")
URL="${GITEA_SERVER_URL}/api/v1/repos/${GITEA_REPOSITORY}/releases/${RELEASE_ID}/assets?name=dist.tar.gz"
curl -fsSL \
-X POST \
-H "Authorization: token ${GITEA_TOKEN}" \
-H "Content-Type: application/gzip" \
--data-binary "@dist.tar.gz" \
"${URL}"
mkdir -p ~/.cache/gitea-artifacts
cp /tmp/dist.tar.gz ~/.cache/gitea-artifacts/
- name: Upload release asset
uses: https://gitea.com/actions/forgejo-release@v1
with:
direction: upload
files: ~/.cache/gitea-artifacts/dist.tar.gz
env:
FORGEJO_TOKEN: ${{ secrets.GITEA_TOKEN }}
deploy-to-server:
name: Deploy to onixbyte.cn
@@ -66,32 +72,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download build artifact
uses: christopherHX/gitea-download-artifact@v4
with:
name: dist-archive
- name: Upload archive to server
env:
DEPLOY_HOST: ${{ vars.DEPLOY_HOST }}
DEPLOY_USER: ${{ vars.DEPLOY_USER }}
DEPLOY_PORT: ${{ vars.DEPLOY_PORT }}
DEPLOY_SSH_KEY: ${{ secrets.DEPLOY_SSH_KEY }}
run: |
set -e
SSH_DIR="${RUNNER_TEMP}/ssh"
mkdir -p "$SSH_DIR"
chmod 700 "$SSH_DIR"
printf '%s\n' "$DEPLOY_SSH_KEY" > "$SSH_DIR/key"
chmod 600 "$SSH_DIR/key"
scp -i "$SSH_DIR/key" \
-P "$DEPLOY_PORT" \
-o StrictHostKeyChecking=accept-new \
-o UserKnownHostsFile="$SSH_DIR/known_hosts" \
dist.tar.gz \
"${DEPLOY_USER}@${DEPLOY_HOST}:/tmp/dist.tar.gz"
rm -rf "$SSH_DIR"
- name: Extract archive and deploy
uses: appleboy/ssh-action@v1.0.3
with:
+33
View File
@@ -0,0 +1,33 @@
image: node:24.15-trixie-slim
stages:
- build
- deploy
build:
stage: build
rules:
- if: $CI_RELEASE_DESCRIPTION
script:
- corepack enable
- corepack prepare pnpm --activate
- pnpm install --frozen-lockfile
- pnpm build
artifacts:
paths:
- dist/
expire_in: 7 days
deploy:
stage: deploy
rules:
- if: $CI_RELEASE_DESCRIPTION
needs:
- build
script:
- apt-get update -qq && apt-get install -y -qq openssh-client rsync
- mkdir -p ~/.ssh
- echo "$SSH_PRIVATE_KEY_BASE64" | base64 -d > ~/.ssh/id_rsa
- chmod 600 ~/.ssh/id_rsa
- ssh-keyscan -H "$DEPLOY_HOST" >> ~/.ssh/known_hosts
- rsync -avz --delete dist/ "${SSH_USER}@${DEPLOY_HOST}:${DEPLOY_PATH}"