Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
8b5dc0a
add release pipeline
shichengripple001 Jul 8, 2025
7333c4e
debug build
shichengripple001 Jul 8, 2025
0e94af5
debug build
shichengripple001 Jul 8, 2025
bd39a0f
debug build
shichengripple001 Jul 8, 2025
72e1fd3
fix package upload
shichengripple001 Jul 8, 2025
32ce1c7
fix package upload
shichengripple001 Jul 8, 2025
b390360
enable test
shichengripple001 Jul 8, 2025
2b6c9b0
retrieve package version from package.json
shichengripple001 Jul 10, 2025
b12551e
retrieve package version from package.json
shichengripple001 Jul 10, 2025
4ae319c
upload sbom file as artifacte
shichengripple001 Jul 10, 2025
4a6264e
fix sbom upload
shichengripple001 Jul 10, 2025
020e9a5
change tag/release name format
shichengripple001 Jul 10, 2025
2346cae
add release guide
shichengripple001 Jul 10, 2025
5a75ada
add release guide
shichengripple001 Jul 10, 2025
21dbd41
add run faucet_test step
shichengripple001 Jul 11, 2025
9b2193a
update release.md
shichengripple001 Jul 11, 2025
c49621c
update owasp dependecy track url
shichengripple001 Jul 17, 2025
03e769b
correct git ref input
shichengripple001 Jul 22, 2025
cbcf97f
apply changes suggested by ai bot
shichengripple001 Jul 22, 2025
ea17f08
apply changes suggested by ai bot
shichengripple001 Jul 22, 2025
1cc4052
fix trivy version
shichengripple001 Jul 22, 2025
8638caf
add dry-run as input
shichengripple001 Jul 22, 2025
652f1ab
update slack channel
shichengripple001 Jul 30, 2025
ad1041d
enable provenance for signing package
shichengripple001 Aug 13, 2025
c9a73f5
enable provenance for signing package
shichengripple001 Aug 13, 2025
277969c
Update .github/workflows/release.yml
shichengripple001 Aug 15, 2025
f351b5b
Update .github/workflows/release.yml
shichengripple001 Aug 15, 2025
7c23f2f
Update .github/workflows/release.yml
shichengripple001 Aug 15, 2025
d86ce0e
Make tarball discovery deterministic
shichengripple001 Aug 15, 2025
3f589ac
tighten pipeline permission
shichengripple001 Aug 15, 2025
b5e9fe8
update environment name
shichengripple001 Aug 15, 2025
e9d47e3
update permission
shichengripple001 Aug 15, 2025
c5196cd
update permission
shichengripple001 Aug 15, 2025
9bfab8e
address PR comments
shichengripple001 Aug 20, 2025
d9dc60b
fix release action
shichengripple001 Aug 20, 2025
6a19419
fix release action
shichengripple001 Aug 20, 2025
d21241d
release from release branch
shichengripple001 Aug 21, 2025
6758012
fail pipeline if full internal registry url is found/fix ai bot comme…
shichengripple001 Aug 22, 2025
327b24a
resolve bot comments
shichengripple001 Aug 22, 2025
1376c2e
allow recreate tag if it is draft
shichengripple001 Aug 22, 2025
e8c3c1d
allow recreate tag if it is draft
shichengripple001 Aug 22, 2025
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
10 changes: 10 additions & 0 deletions .github/workflows/faucet_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ on:
push:
branches: [main]
workflow_dispatch:
workflow_call:
inputs:
git_ref:
description: 'Git ref to checkout (branch, tag, or commit SHA)'
required: true
type: string


jobs:
faucet-test:
Expand All @@ -17,6 +24,9 @@ jobs:

steps:
- uses: actions/checkout@v4
with:
ref: ${{ inputs.git_ref || github.ref }}
fetch-depth: 0
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
Expand Down
23 changes: 22 additions & 1 deletion .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ name: Node.js CI

env:
RIPPLED_DOCKER_IMAGE: rippleci/rippled:develop
GIT_REF: ${{ inputs.git_ref || github.ref }}

on:
push:
Expand All @@ -13,18 +14,26 @@ on:
- '**'
pull_request:
workflow_dispatch:
workflow_call:
inputs:
git_ref:
description: 'Git ref to checkout (branch, tag, or commit SHA)'
required: true
type: string

jobs:
build-and-lint:
runs-on: ubuntu-latest
timeout-minutes: 10

strategy:
matrix:
node-version: [22.x]

steps:
- uses: actions/checkout@v4
with:
ref: ${{ env.GIT_REF }}
fetch-depth: 0
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
Expand Down Expand Up @@ -65,6 +74,9 @@ jobs:

steps:
- uses: actions/checkout@v4
with:
ref: ${{ env.GIT_REF }}
fetch-depth: 0
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
Expand Down Expand Up @@ -105,6 +117,9 @@ jobs:

steps:
- uses: actions/checkout@v4
with:
ref: ${{ env.GIT_REF }}
fetch-depth: 0

- name: Run docker in background
run: |
Expand Down Expand Up @@ -156,6 +171,9 @@ jobs:

steps:
- uses: actions/checkout@v4
with:
ref: ${{ env.GIT_REF }}
fetch-depth: 0

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
Expand Down Expand Up @@ -206,6 +224,9 @@ jobs:

steps:
- uses: actions/checkout@v4
with:
ref: ${{ env.GIT_REF }}
fetch-depth: 0

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
Expand Down
Loading
Loading