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
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
- name: enable corepack
run: |
corepack enable
corepack prepare yarn@4.9.2 --activate
corepack prepare yarn@4.11.0 --activate
- name: cache yarn dependencies
uses: actions/cache@v4
with:
Expand All @@ -77,9 +77,9 @@ jobs:
- name: Publish to npm
run: |
if [ "${{ needs.check-version.outputs.is-prerelease }}" == "true" ]; then
yarn npm publish --provenance --access public --tag ${{ needs.check-version.outputs.npm-tag }}
yarn npm publish --access public --tag ${{ needs.check-version.outputs.npm-tag }}
else
yarn npm publish --provenance --access public
yarn npm publish --access public
fi

create-release:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: enable corepack
run: |
corepack enable
corepack prepare yarn@4.9.2 --activate
corepack prepare yarn@4.11.0 --activate
- name: cache yarn dependencies
uses: actions/cache@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
nodeLinker: node-modules
npmRegistryServer: 'https://registry.npmjs.org'
npmAuthToken: '${NPM_AUTH_TOKEN-}'
npmPublishProvenance: true
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"packageManager": "yarn@4.9.2",
"packageManager": "yarn@4.11.0",
"name": "@reforge-com/javascript",
"version": "0.0.4",
"description": "Feature Flags & Dynamic Configuration as a Service",
Expand Down