Skip to content

Commit

Permalink
Remove macos from CI, seems slow/unreliable
Browse files Browse the repository at this point in the history
  • Loading branch information
tajo committed May 3, 2022
1 parent ce7373d commit 71d6d79
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
TURBO_TEAM: ${{ secrets.TURBO_TEAM }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
os: [ubuntu-latest]
steps:
- name: Check out code
uses: actions/checkout@v2
Expand Down
8 changes: 6 additions & 2 deletions release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,15 @@

set -eo pipefail

echo "//registry.npmjs.org/:_authToken=$NODE_AUTH_TOKEN" > ~/.npmrc
echo "Running release"
echo "//registry.npmjs.org/:_authToken=$NPM_AUTH_TOKEN" > ~/.npmrc

echo "Build @ladle/react"
turbo run build --filter=@ladle/react

echo "Changeset publish"
changeset publish

# build and publish @ladle/react-cjs
echo "Build and publish @ladle/react-cjs"
cd packages/ladle/cjs
pnpm publish

0 comments on commit 71d6d79

Please sign in to comment.