Skip to content

Commit

Permalink
ci: fixed config option
Browse files Browse the repository at this point in the history
  • Loading branch information
GarthDB committed Mar 14, 2024
1 parent 2611414 commit 2230886
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,9 @@ jobs:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: pnpm/action-setup@v3
- uses: moonrepo/setup-toolchain@v0
with:
version: 8
- run: pnpm i
auto-install: true
- name: Publish
id: changesets
uses: changesets/action@v1
Expand Down
10 changes: 5 additions & 5 deletions .moon/workspace.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# https://moonrepo.dev/docs/config/workspace
$schema: "https://moonrepo.dev/schemas/workspace.json"
$schema: 'https://moonrepo.dev/schemas/workspace.json'

# Require a specific version of moon while running commands, otherwise fail.
# versionConstraint: '>=1.0.0'
Expand All @@ -12,18 +12,18 @@ $schema: "https://moonrepo.dev/schemas/workspace.json"
# path to the project folder as the map value. File paths are relative from the workspace root,
# and cannot reference projects located outside the workspace boundary.
projects:
- "docs/*"
- "packages/*"
- 'docs/*'
- 'packages/*'

# Configures the version control system to utilize within the workspace. A VCS
# is required for determining touched (added, modified, etc) files, calculating file hashes,
# computing affected files, and much more.
vcs:
# The client to use when managing the repository.
# Accepts "git". Defaults to "git".
manager: "git"
manager: 'git'

# The default branch (master/main/trunk) in the repository for comparing the
# local branch against. For git, this is is typically "master" or "main",
# and must include the remote prefix (before /).
defaultBranch: "monorepo"
defaultBranch: 'main'

0 comments on commit 2230886

Please sign in to comment.