Skip to content
Merged
Show file tree
Hide file tree
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
8 changes: 7 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,18 @@ jobs:
uses: actions/setup-node@v4
with:
registry-url: "https://registry.npmjs.org"
- name: Enable Corepack
run: corepack enable

- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT

- name: Cache Yarn dependencies
uses: actions/cache@v4
with:
path: |
~/.cache/yarn
${{ steps.yarn-cache-dir-path.outputs.dir }}
**/node_modules
key: yarn-${{ runner.os }}-${{ hashFiles('yarn.lock') }}
restore-keys: |
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -507,5 +507,5 @@ If you'd like to try the functionality available on `main`, see the preview [on
1. Run `yarn changeset version` to generate changelog files and version bumps from the changeset files
1. Run `yarn install` to update yarn.lock with the new versions
1. Verify that the changelogs look good, commit changes, open a PR, merge the PR
1. Push tags for each package in the format `[email protected]`. A Github action will publish the packages on NPM
1. Push tags for each package in the format `@getodk/<package>@x.x.x`. A Github action will publish the packages on NPM
1. Update dependencies to kick off the new release cycle. We do this so that dependency updates get verified implicitly during development.