Skip to content

Commit 467ff5b

Browse files
authored
Merge pull request #51 from aave/fix/mpsc0x/oidc-integration
changed perms to write and added gh token to upload step
2 parents d829981 + cb24983 commit 467ff5b

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/npm-publish.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66

77
permissions:
88
id-token: write
9-
contents: read
9+
contents: write
1010

1111
jobs:
1212
test:
@@ -63,6 +63,8 @@ jobs:
6363

6464
- name: Upload release assets
6565
uses: softprops/action-gh-release@v1
66+
env:
67+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6668
with:
6769
files: |
6870
dist/bundle.js

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@aave/aave-v3-aptos-ts-sdk",
3-
"version": "0.0.58",
3+
"version": "0.0.59",
44
"description": "Aave's typescript sdk for Aptos",
55
"main": "dist/cmd/index.js",
66
"module": "dist/esm/index.js",

scripts/publish.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ PACKAGE_NAME=$(cat package.json | jq -r '.name')
77
PUBLISH_VERSION=$(cat package.json | jq -r '.version')
88
echo "Publishing ${PACKAGE_NAME}@$PUBLISH_VERSION"
99

10-
npm publish --access public
10+
npm publish --access public --provenance

0 commit comments

Comments
 (0)