Skip to content

Update CI

Update CI #98

Workflow file for this run

name: CICD
on:
push:
branches:
- release
merge_group:
branches:
- release
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: latest
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 18
cache: pnpm
- name: Install dependencies with pnpm
run: pnpm install
- name: Run build task
env:
CI: false
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
run: pnpm build
# - name: Deploy to Server
# uses: easingthemes/[email protected]
# with:
# SSH_PRIVATE_KEY: ${{ secrets.DEPLOY_KEY }}
# REMOTE_HOST: ${{ secrets.REMOTE_HOST }}
# REMOTE_USER: root
# SOURCE: /build
# TARGET: /www/temp