Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
129d096
Step 0: Add missing tests for trustbloc-dependent code (#1)
Mar 4, 2026
08504d9
Step 1: Introduce local credential/presentation types (#2)
Mar 4, 2026
bc556bb
Step 2: Custom DID resolution package (#3)
Mar 4, 2026
6ac0a12
Step 3: Replace DID resolution in jwt_verifier.go (#4)
Mar 4, 2026
b24f38d
Step 4: Replace DID resolution in key_resolver, request_object_client…
Mar 4, 2026
3134471
Step 5: Replace DID resolution in gaiax/gaiaXClient.go (#6)
Mar 4, 2026
87c5e21
Step 6: Migrate production code to local credential/presentation types
wistefan Mar 4, 2026
c62fdab
Merge pull request 'Step 6: Migrate to local credential/presentation …
wistefan Mar 4, 2026
9d7296b
Step 7: Custom VP/VC parsing (#8)
Mar 5, 2026
9095718
Step 8: Custom SD-JWT verification (#9)
Mar 5, 2026
6f51b4a
Step 9: Custom credential content validation (#10)
Mar 5, 2026
e8a68fc
Step 11: Replace trustbloc in tir/tokenProvider.go (#11)
Mar 5, 2026
3e95be8
Step 12: Remove all trustbloc dependencies (#12)
Mar 5, 2026
741c11e
Merge branch 'main' into trustbloc
wistefan Mar 5, 2026
5656a05
Update pre-release.yml
wistefan Mar 11, 2026
717b1d0
Merge branch 'main' into trustbloc
wistefan Mar 11, 2026
ebac28d
fix import
wistefan Mar 13, 2026
e5e05d8
Merge branch 'main' into trustbloc
wistefan Mar 13, 2026
d7cb3c5
fix test
wistefan Mar 13, 2026
abc2b47
Merge remote-tracking branch 'refs/remotes/origin/trustbloc' into tru…
wistefan Mar 13, 2026
db1860a
merge fixes
wistefan Mar 13, 2026
8478bec
Merge branch 'main' into trustbloc
wistefan Apr 1, 2026
a888372
remove coveralls
wistefan Apr 1, 2026
36438c9
clean
wistefan Apr 1, 2026
d1d8c92
clean
wistefan Apr 1, 2026
3ff8b19
clean
wistefan Apr 1, 2026
fd4ac6a
Merge branch 'main' into trustbloc
wistefan Apr 2, 2026
2c7bff1
fix on the right branch...
wistefan Apr 2, 2026
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
41 changes: 41 additions & 0 deletions .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,17 +77,57 @@ jobs:
username: ${{ secrets.QUAY_USERNAME }}
password: ${{ secrets.QUAY_PASSWORD }}

build-binaries:
needs: [ "generate-version" ]
runs-on: ubuntu-latest
strategy:
matrix:
include:
- goos: linux
goarch: amd64
- goos: linux
goarch: arm64

steps:
- uses: actions/checkout@v2

- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod

- name: Build binary
env:
CGO_ENABLED: "0"
GOOS: ${{ matrix.goos }}
GOARCH: ${{ matrix.goarch }}
run: go build -ldflags="-s -w" -o vcverifier-${{ matrix.goos }}-${{ matrix.goarch }} .

- name: Upload binary artifact
uses: actions/upload-artifact@v4
with:
name: vcverifier-${{ matrix.goos }}-${{ matrix.goarch }}
path: vcverifier-${{ matrix.goos }}-${{ matrix.goarch }}

git-release:
needs:
- generate-version
- vcverifier
- build-binaries

runs-on: ubuntu-latest

steps:

- uses: actions/checkout@v2

- name: Download all binary artifacts
uses: actions/download-artifact@v4
with:
path: release-assets
pattern: vcverifier-*
merge-multiple: true

- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
Expand All @@ -96,3 +136,4 @@ jobs:
title: ${{ needs.generate-version.outputs.version }}
files: |
LICENSE
release-assets/vcverifier-*
Loading
Loading