Skip to content

Commit

Permalink
chore(ci): add temporary build action
Browse files Browse the repository at this point in the history
  • Loading branch information
tonywu6 committed Nov 24, 2023
1 parent 5a1c31d commit 240584e
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/_build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: 'Build (Temporary)'

on:
workflow_dispatch:

jobs:
publish:
name: Publish
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Setup environment
uses: secretflow/web-ci/.github/actions/ci-setup@main
with:
node-version: '18'
python-version: '3.8'

- name: Build
run: pnpm run ci:build

- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: artifacts
path: |
packages/*/dist/**
pyprojects/*/dist/**

0 comments on commit 240584e

Please sign in to comment.