Skip to content

Commit

Permalink
Build each package in order (#772)
Browse files Browse the repository at this point in the history
  • Loading branch information
scotttrinh authored Nov 9, 2023
1 parent 8c6d093 commit 955a884
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,8 @@ jobs:
with:
deno-version: v1.30.x

- name: Install deps and build
run: |
yarn
yarn workspaces run build
- name: Install deps
run: yarn

- name: Changelog Vars
run: |
Expand All @@ -40,6 +38,9 @@ jobs:
- name: Copy readme
run: cp README.md packages/driver/README.md

- name: Build edgedb
run: yarn workspace edgedb run build

- id: publish_driver
name: Publish 'edgedb' to NPM
uses: JS-DevTools/npm-publish@v1
Expand Down Expand Up @@ -89,6 +90,9 @@ jobs:

# @edgedb/generate

- name: Build @edgedb/generate
run: yarn workspace @edgedb/generate run build

- id: publish_generate
name: Publish '@edgedb/generate' to NPM
uses: JS-DevTools/npm-publish@v1
Expand Down Expand Up @@ -138,6 +142,9 @@ jobs:

# @edgedb/auth-core

- name: Build @edgedb/auth-core
run: yarn workspace @edgedb/auth-core run build

- id: publish_auth_core
name: Publish '@edgedb/auth-core' to NPM
uses: JS-DevTools/npm-publish@v1
Expand Down Expand Up @@ -187,6 +194,9 @@ jobs:

# @edgedb/auth-nextjs

- name: Build @edgedb/auth-nextjs
run: yarn workspace @edgedb/auth-nextjs run build

- id: publish_auth_nextjs
name: Publish '@edgedb/auth-nextjs' to NPM
uses: JS-DevTools/npm-publish@v1
Expand Down

0 comments on commit 955a884

Please sign in to comment.