65
65
foundry :
66
66
image : ghcr.io/settlemint/btp-anvil-test-node:latest
67
67
ports :
68
- - ' 8545:8545'
68
+ - " 8545:8545"
69
69
name : Build Set
70
70
# runs-on: ubuntu-latest
71
71
runs-on : namespace-profile-btp-scs
@@ -101,10 +101,8 @@ jobs:
101
101
with :
102
102
node-version : 22
103
103
104
- - uses : oven-sh/setup-bun@v2
105
-
106
104
- name : Install Node dependencies
107
- run : bun install
105
+ run : npm install
108
106
109
107
- name : Run Forge build
110
108
run : |
@@ -240,26 +238,26 @@ jobs:
240
238
if : ${{ github.event_name == 'pull_request' }}
241
239
uses : taoliujun/action-unique-comment@v1
242
240
with :
243
- uniqueIdentifier : ${{ github.workflow }}
244
- body : |
245
- # 📦 Packages
246
- | Package | Install |
247
- | ------- | -------------------- |
248
- | React | `bun add @${{ github.repository_owner }}/${{ github.repository }}@${{ env.VERSION }}` |
241
+ uniqueIdentifier : ${{ github.workflow }}
242
+ body : |
243
+ # 📦 Packages
244
+ | Package | Install |
245
+ | ------- | -------------------- |
246
+ | Template Set | `bun add @${{ github.repository_owner }}/${{ github.repository }}@${{ env.VERSION }}` |
249
247
250
248
- uses : stefanzweifel/git-auto-commit-action@v5
251
249
if : env.TAG == 'latest' && github.repository != 'settlemint/solidity-predeployed'
252
250
with :
253
251
commit_message : " chore: update package versions [skip ci]"
254
252
branch : main
255
- file_pattern : ' package.json README.md'
253
+ file_pattern : " package.json README.md"
256
254
257
255
- uses : stefanzweifel/git-auto-commit-action@v5
258
256
if : env.TAG == 'latest' && github.repository == 'settlemint/solidity-predeployed'
259
257
with :
260
258
commit_message : " chore: update package versions [skip ci]"
261
259
branch : main
262
- file_pattern : ' package.json README.md all_allocations.json'
260
+ file_pattern : " package.json README.md all_allocations.json"
263
261
264
262
- name : Set up QEMU
265
263
uses : docker/setup-qemu-action@v3
@@ -305,7 +303,6 @@ jobs:
305
303
labels : ${{ steps.docker_meta.outputs.labels }}
306
304
no-cache : true
307
305
308
-
309
306
- name : Sign the images with GitHub OIDC Token
310
307
env :
311
308
DIGEST : ${{ steps.build-and-push.outputs.digest }}
@@ -315,4 +312,4 @@ jobs:
315
312
for tag in ${TAGS}; do
316
313
images+="${tag}@${DIGEST} "
317
314
done
318
- cosign sign --yes ${images}
315
+ cosign sign --yes ${images}
0 commit comments