From 3d45480fa0035dd8503f086d1c8d2c834765dcf3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=B2=81=E6=A0=91=E4=BA=BA?= Date: Sun, 15 Dec 2024 21:21:54 +0900 Subject: [PATCH] ci: use gitea actions for build and deployments --- .drone.yml | 35 ----------------------------------- .editorconfig | 2 +- .gitea/workflows/build.yaml | 35 +++++++++++++++++++++++++++++++++++ scripts/deploy.sh | 2 +- 4 files changed, 37 insertions(+), 37 deletions(-) delete mode 100644 .drone.yml create mode 100644 .gitea/workflows/build.yaml diff --git a/.drone.yml b/.drone.yml deleted file mode 100644 index 02c6988..0000000 --- a/.drone.yml +++ /dev/null @@ -1,35 +0,0 @@ ---- -kind: pipeline -type: docker -name: default - -steps: - - name: test & build - image: node:22.12.0-bookworm - commands: - # - git config --global --add safe.directory "/drone/src" - - corepack enable - - corepack prepare pnpm@latest --activate - - pnpm i --frozen-lockfile - - pnpm build - environment: - # 让 npm 使用淘宝源 - npm_config_registry: https://registry.npmmirror.com - - - name: publish - image: node:22.12.0-bookworm - environment: - DRONE_GITEA_SERVER: https://git.unlock-music.dev - GITEA_API_KEY: - from_secret: GITEA_API_KEY - NETLIFY_SITE_ID: - from_secret: NETLIFY_SITE_ID - NETLIFY_API_KEY: - from_secret: NETLIFY_API_KEY - commands: - - | - python3 -m zipfile -c um-react.zip dist/. - cp um-react.zip dist/"release-${DRONE_COMMIT_SHA}.zip" - python3 -m zipfile -c um-react-site.zip dist/. - - ./scripts/publish.sh - - ./scripts/deploy.sh diff --git a/.editorconfig b/.editorconfig index 43a0ceb..a9bfe09 100644 --- a/.editorconfig +++ b/.editorconfig @@ -11,5 +11,5 @@ charset = utf-8 trim_trailing_whitespace = true insert_final_newline = true -[*.{{c,m,}js{x,on,},ts{x,}}] +[*.{{c,m,}js{x,on,},ts{x,},y{,a}ml}] indent_size = 2 diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml new file mode 100644 index 0000000..0e67d06 --- /dev/null +++ b/.gitea/workflows/build.yaml @@ -0,0 +1,35 @@ +name: Build and Deploy +on: [push] + +jobs: + build: + runs-on: ubuntu-latest + env: + npm_config_registry: https://registry.npmmirror.com + steps: + - name: Check out repository code + uses: actions/checkout@v4 + - name: Setup pnpm + uses: pnpm/action-setup@v4.0.0 + with: + standalone: true + run_install: | + - args: [--frozen-lockfile, --strict-peer-dependencies] + - name: Build + run: pnpm build + - name: Prepare for deployment + run: | + python3 -m zipfile -c um-react.zip dist/. + cp um-react.zip dist/"release-${GITHUB_SHA}.zip" + python3 -m zipfile -c um-react-site.zip dist/. + - name: Publish Artifact + uses: actions/upload-artifact@v4 + with: + name: site + path: dist/ + - name: Deploy + env: + NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }} + NETLIFY_API_KEY: ${{ secrets.NETLIFY_API_KEY }} + run: | + ./scripts/deploy.sh diff --git a/scripts/deploy.sh b/scripts/deploy.sh index c7fa577..786cc64 100755 --- a/scripts/deploy.sh +++ b/scripts/deploy.sh @@ -103,7 +103,7 @@ deploy_netlify() { # For deployment, we care a bit less if [[ -n "${NETLIFY_API_KEY}" && -n "${NETLIFY_SITE_ID}" ]]; then - echo "Deploy to netlify..." + echo "Deploy to netlify (branch: ${BRANCH_NAME})..." deploy_netlify um-react-site.zip else echo "skip netlify deployment."