Skip to content

Commit 1399fea

Browse files
authored
Merge pull request #104 from algorandfoundation/update-alpha
Update alpha
2 parents fc179f4 + eeb4104 commit 1399fea

File tree

4 files changed

+110
-1664
lines changed

4 files changed

+110
-1664
lines changed

.github/workflows/release.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,18 @@ jobs:
3636
needs: build
3737
runs-on: ubuntu-latest
3838
steps:
39+
- name: Generate bot token
40+
uses: actions/create-github-app-token@v1
41+
id: app_token
42+
with:
43+
app-id: ${{ secrets.BOT_ID }}
44+
private-key: ${{ secrets.BOT_SK }}
45+
3946
- name: Clone repository
4047
uses: actions/checkout@v4
4148
with:
4249
fetch-depth: 0
50+
token: ${{ steps.app_token.outputs.token }}
4351

4452
- name: Use Node.js 20.x
4553
uses: actions/setup-node@v4
@@ -56,7 +64,7 @@ jobs:
5664
- name: Generate semantic version for @algorandfoundation/algorand-typescript-testing
5765
run: npx semantic-release
5866
env:
59-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
67+
GITHUB_TOKEN: ${{ steps.app_token.outputs.token }}
6068

6169
- name: Publish @algorandfoundation/algorand-typescript-testing
6270
uses: JS-DevTools/npm-publish@v3

.nsprc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{}
1+
{}

0 commit comments

Comments
 (0)