Skip to content

Commit b5a3a15

Browse files
committed
fix: update action
1 parent 1debce9 commit b5a3a15

File tree

4 files changed

+30
-11
lines changed

4 files changed

+30
-11
lines changed

.github/CONTRIBUTING.ms

+2-2
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,9 @@ When you submit a pull request, GitHub will automatically lint, build, and test
9494

9595
### Versioning
9696

97-
When adding new features or fixing bugs, we'll need to bump the package versions. We use [Changesets](https://github.com/changesets/changesets) to do this.
97+
When adding new features or fixing bugs, we'll need to bump the package version. We use [Changesets](https://github.com/changesets/changesets) to do this.
9898
99-
Each changeset defines which package(s) should be published and whether the change should be a minor/patch release, as well as providing release notes that will be added to the changelog upon release.
99+
Each changeset defines which package should be published and whether the change should be a minor/patch release, as well as providing release notes that will be added to the changelog upon release.
100100
101101
To create a new changeset, run `npm run changeset`. This will run the Changesets CLI, prompting you for details about the change. You’ll be able to edit the file after it’s created — don’t worry about getting everything perfect up front.
102102

.github/workflows/release.yml

+1-9
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,11 @@ jobs:
1818

1919
- uses: bgd-labs/github-workflows/.github/actions/setup-node@main
2020

21-
- name: Creating .npmrc
22-
run: |
23-
cat << EOF > "$HOME/.npmrc"
24-
//registry.npmjs.org/:_authToken=$NODE_AUTH_TOKEN
25-
EOF
26-
env:
27-
NPM_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}
28-
2921
- name: Create Release Pull Request or Publish to npm
3022
id: changesets
3123
uses: changesets/action@v1
3224
with:
3325
publish: npm run release
3426
env:
3527
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
36-
NPM_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}
28+
NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}

package-lock.json

+26
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
},
3434
"dependencies": {
3535
"@bgd-labs/aave-cli": "^1.1.17",
36+
"@bgd-labs/solidity-utils": "^1.1.2",
3637
"catapulta-verify": "^1.3.0"
3738
}
3839
}

0 commit comments

Comments
 (0)