Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
fbf87fa810
|
|||
|
66cb747e34
|
|||
|
fe2f920f4d
|
|||
|
f1393088a4
|
|||
|
e4aa5b988b
|
|||
|
7343f68a4e
|
|||
|
782974f96d
|
+35
-20
@@ -16,7 +16,7 @@ jobs:
|
||||
- name: Setup Node
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: 20
|
||||
node-version: 24
|
||||
cache: pnpm
|
||||
|
||||
- name: Setup pnpm
|
||||
@@ -31,7 +31,7 @@ jobs:
|
||||
run: pnpm build:tar
|
||||
|
||||
- name: Upload build artifact
|
||||
uses: actions/upload-artifact@v4
|
||||
uses: maxsargentdev/gitea-upload-artifact@v4
|
||||
with:
|
||||
name: dist-archive
|
||||
path: dist.tar.gz
|
||||
@@ -44,17 +44,21 @@ jobs:
|
||||
|
||||
steps:
|
||||
- name: Download build artifact
|
||||
uses: actions/download-artifact@v4
|
||||
uses: christopherHX/gitea-download-artifact@v4
|
||||
with:
|
||||
name: dist-archive
|
||||
|
||||
- name: Upload release asset
|
||||
uses: https://gitea.com/actions/forgejo-release@v1
|
||||
with:
|
||||
direction: upload
|
||||
files: dist.tar.gz
|
||||
env:
|
||||
FORGEJO_TOKEN: ${{ secrets.GITEA_TOKEN }}
|
||||
- name: Upload to Gitea Release
|
||||
run: |
|
||||
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}"
|
||||
|
||||
deploy-to-server:
|
||||
name: Deploy to onixbyte.cn
|
||||
@@ -63,21 +67,32 @@ jobs:
|
||||
|
||||
steps:
|
||||
- name: Download build artifact
|
||||
uses: actions/download-artifact@v4
|
||||
uses: christopherHX/gitea-download-artifact@v4
|
||||
with:
|
||||
name: dist-archive
|
||||
|
||||
- name: Upload archive to server
|
||||
uses: appleboy/scp-action@v0.1.7
|
||||
with:
|
||||
host: ${{ vars.DEPLOY_HOST }}
|
||||
username: ${{ vars.DEPLOY_USER }}
|
||||
port: ${{ vars.DEPLOY_PORT }}
|
||||
key: ${{ secrets.DEPLOY_SSH_KEY }}
|
||||
source: "dist.tar.gz"
|
||||
target: "/tmp/"
|
||||
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 set ownership
|
||||
- name: Extract archive and deploy
|
||||
uses: appleboy/ssh-action@v1.0.3
|
||||
with:
|
||||
host: ${{ vars.DEPLOY_HOST }}
|
||||
|
||||
@@ -1,33 +0,0 @@
|
||||
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}"
|
||||
Reference in New Issue
Block a user