Fix the API (again) (#1002)

This commit is contained in:
Jed Fox
2023-05-16 14:56:24 -04:00
committed by GitHub
parent 34c8a73ee5
commit d400ebfda0
4 changed files with 22 additions and 6 deletions

View File

@@ -23,6 +23,13 @@ jobs:
uses: ./.github/actions/setup
- name: Build API
run: cd packages/api && yarn build
- name: Create package tgz
run: cd packages/api && yarn pack && mv package.tgz actual-api.tgz
- name: Upload Build
uses: actions/upload-artifact@v3
with:
name: actual-api
path: packages/api/actual-api.tgz
web:
runs-on: ubuntu-latest