Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Build each package in order #772

Merged
merged 1 commit into from
Nov 9, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading