Skip to content

Commit

Permalink
deploy-canary incorrect ui/ ref, ci workflow don't build shared
Browse files Browse the repository at this point in the history
  • Loading branch information
mrozanski committed Feb 15, 2024
1 parent 04823aa commit a14eaf6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 8 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,6 @@ jobs:
- name: Install Dependencies
run: npm ci

- name: Build Shared Packages
run: npm run build:shared

- name: Run Lint
run: npm run lint --workspaces --if-present

Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/deploy-canary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@ jobs:
ref: ${{ env.tag }}
- uses: actions/setup-node@v3
with:
node-version-file: ./ui/.nvmrc
- working-directory: ./ui
node-version-file: .nvmrc
- working-directory: ./apps/tlon-web
run: |
npm ci
npm run build
- uses: actions/upload-artifact@v3
with:
name: 'ui-dist'
path: ui/dist
path: apps/tlon-web/dist
glob:
runs-on: ubuntu-latest
name: 'Make a glob'
Expand All @@ -42,7 +42,7 @@ jobs:
- uses: actions/download-artifact@v3
with:
name: 'ui-dist'
path: ui/dist
path: apps/tlon-web/dist
- id: 'auth'
uses: 'google-github-actions/auth@v1'
with:
Expand All @@ -52,7 +52,7 @@ jobs:
- name: 'glob'
uses: ./.github/actions/glob
with:
folder: 'ui/dist/*'
folder: 'apps/tlon-web/dist/*'
docket: 'desk/desk.docket-0'
- name: Commit and Push Glob
run: |
Expand Down

0 comments on commit a14eaf6

Please sign in to comment.