Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion .github/workflows/android-device-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }}
steps:
- name: Checkout all repos with ref fallback
uses: walt-id/waltid-identity/.github/actions/checkout-repos@4296a7f80cacf7e60cb1a20321956768892eb7e3
uses: walt-id/waltid-identity/.github/actions/checkout-repos@73cf58a0edcc4c978304fdfd1a91372d34f65da2
with:
token: ${{ secrets.GH_ACCESS_TOKEN || github.token }}
ref: ${{ github.event.pull_request.head.ref || github.head_ref || github.ref_name }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/api-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
include: ${{ fromJSON(inputs.images) }}
steps:
- name: Checkout all repos with ref fallback
uses: walt-id/waltid-identity/.github/actions/checkout-repos@864f84343fdeea17f6f63434bc8036c39f178dc7
uses: walt-id/waltid-identity/.github/actions/checkout-repos@73cf58a0edcc4c978304fdfd1a91372d34f65da2
with:
token: ${{ secrets.GH_ACCESS_TOKEN }}
- name: Configure gradle
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/branch-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
with:
jsonpath: ".github/workflows/data/docker-matrix.json"
docker:
uses: walt-id/waltid-identity/.github/workflows/docker.yml@6bb27c98fb66d9525dcc5ed8b0e703ff07a18c4a
uses: walt-id/waltid-identity/.github/workflows/docker.yml@0601e9b457f63238dfbc2a9a4fa54b7b1aee0a9d
secrets: inherit
needs: [ version, docker-matrix ]
with:
Expand All @@ -32,7 +32,7 @@ jobs:
with:
jsonpath: ".github/workflows/data/api-docker-matrix.json"
api-docker:
uses: walt-id/waltid-identity/.github/workflows/api-docker.yml@6bb27c98fb66d9525dcc5ed8b0e703ff07a18c4a
uses: walt-id/waltid-identity/.github/workflows/api-docker.yml@0601e9b457f63238dfbc2a9a4fa54b7b1aee0a9d
secrets: inherit
needs: [ version, api-docker-matrix ]
with:
Expand All @@ -41,7 +41,7 @@ jobs:
tags: '["dev", "latest"]'
publish: true
deploy:
uses: walt-id/waltid-identity/.github/workflows/helm-deployment.yml@6bb27c98fb66d9525dcc5ed8b0e703ff07a18c4a
uses: walt-id/waltid-identity/.github/workflows/helm-deployment.yml@0601e9b457f63238dfbc2a9a4fa54b7b1aee0a9d
secrets: inherit
needs: [ version, docker, api-docker ]
with:
Expand Down
50 changes: 16 additions & 34 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,22 @@
name: Build on every push

on:
pull_request:
types: [opened, synchronize, reopened]
paths-ignore: &docs-and-assets
- '**/*.md'
- '**/*.png'
- '**/*.jpg'
- '**/*.webp'
- '**/*.svg'
- '**/*.ico'
- '**/LICENSE'
- '.github/ISSUE_TEMPLATE/**'
- '.github/PULL_REQUEST_TEMPLATE.md'
- 'docs/**'
push:
branches: [main]
paths-ignore: *docs-and-assets

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand All @@ -20,7 +35,7 @@ jobs:
version:
uses: walt-id/waltid-identity/.github/workflows/version.yml@6bb27c98fb66d9525dcc5ed8b0e703ff07a18c4a
gradle-build:
uses: walt-id/waltid-identity/.github/workflows/gradle.yml@6bb27c98fb66d9525dcc5ed8b0e703ff07a18c4a
uses: walt-id/waltid-identity/.github/workflows/gradle.yml@0601e9b457f63238dfbc2a9a4fa54b7b1aee0a9d
secrets: inherit
needs:
- android-eligibility
Expand All @@ -29,36 +44,3 @@ jobs:
version: ${{ needs.version.outputs.release_version }}
enable-android-build: ${{ needs.android-eligibility.outputs.should-run == 'true' }}
report-check-name: 'gradle-build / gradle (ubuntu-22.04)'
docker-matrix:
uses: walt-id/waltid-identity/.github/workflows/load-json.yml@6bb27c98fb66d9525dcc5ed8b0e703ff07a18c4a
with:
jsonpath: ".github/workflows/data/docker-matrix.json"
docker:
uses: walt-id/waltid-identity/.github/workflows/docker.yml@6bb27c98fb66d9525dcc5ed8b0e703ff07a18c4a
secrets: inherit
needs: [ version, docker-matrix ]
with:
images: ${{ needs.docker-matrix.outputs.json }}
version: ${{ needs.version.outputs.release_version }}
artifact: true
api-docker-matrix:
uses: walt-id/waltid-identity/.github/workflows/load-json.yml@6bb27c98fb66d9525dcc5ed8b0e703ff07a18c4a
with:
jsonpath: ".github/workflows/data/api-docker-matrix.json"
api-docker:
uses: walt-id/waltid-identity/.github/workflows/api-docker.yml@6bb27c98fb66d9525dcc5ed8b0e703ff07a18c4a
secrets: inherit
needs: [ version, api-docker-matrix ]
with:
images: ${{ needs.api-docker-matrix.outputs.json }}
version: ${{ needs.version.outputs.release_version }}
artifact: true
ebsi-ct-v3:
# disabled job because of ebsi certificate issues (expired certificate)
if: false
uses: walt-id/waltid-identity/.github/workflows/ebsictv3.yml@6bb27c98fb66d9525dcc5ed8b0e703ff07a18c4a
needs: [ version, docker, api-docker ]
secrets: inherit
with:
artifact: issuer-api
tag: "waltid/issuer-api:${{ needs.version.outputs.release_version }}"
2 changes: 1 addition & 1 deletion .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout all repos with ref fallback
uses: walt-id/waltid-identity/.github/actions/checkout-repos@864f84343fdeea17f6f63434bc8036c39f178dc7
uses: walt-id/waltid-identity/.github/actions/checkout-repos@73cf58a0edcc4c978304fdfd1a91372d34f65da2
with:
token: ${{ secrets.GH_ACCESS_TOKEN }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:

steps:
- name: Checkout all repos with ref fallback
uses: walt-id/waltid-identity/.github/actions/checkout-repos@864f84343fdeea17f6f63434bc8036c39f178dc7
uses: walt-id/waltid-identity/.github/actions/checkout-repos@73cf58a0edcc4c978304fdfd1a91372d34f65da2
with:
token: ${{ secrets.GH_ACCESS_TOKEN }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
echo "${{ matrix.image }}::: ${{ inputs.tag }} / ${{ inputs.version }}"
- name: Checkout all repos with ref fallback
uses: walt-id/waltid-identity/.github/actions/checkout-repos@864f84343fdeea17f6f63434bc8036c39f178dc7
uses: walt-id/waltid-identity/.github/actions/checkout-repos@73cf58a0edcc4c978304fdfd1a91372d34f65da2
with:
token: ${{ secrets.GH_ACCESS_TOKEN }}

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/fix-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
with:
preferred: ${{ inputs.release_version }}
gradle:
uses: walt-id/waltid-identity/.github/workflows/gradle.yml@6bb27c98fb66d9525dcc5ed8b0e703ff07a18c4a
uses: walt-id/waltid-identity/.github/workflows/gradle.yml@0601e9b457f63238dfbc2a9a4fa54b7b1aee0a9d
secrets: inherit
needs: version
with:
Expand All @@ -26,7 +26,7 @@ jobs:
with:
jsonpath: ".github/workflows/data/docker-matrix.json"
docker:
uses: walt-id/waltid-identity/.github/workflows/docker.yml@6bb27c98fb66d9525dcc5ed8b0e703ff07a18c4a
uses: walt-id/waltid-identity/.github/workflows/docker.yml@0601e9b457f63238dfbc2a9a4fa54b7b1aee0a9d
secrets: inherit
needs: [ version, docker-matrix ]
with:
Expand All @@ -38,7 +38,7 @@ jobs:
with:
jsonpath: ".github/workflows/data/api-docker-matrix.json"
api-docker:
uses: walt-id/waltid-identity/.github/workflows/api-docker.yml@6bb27c98fb66d9525dcc5ed8b0e703ff07a18c4a
uses: walt-id/waltid-identity/.github/workflows/api-docker.yml@0601e9b457f63238dfbc2a9a4fa54b7b1aee0a9d
secrets: inherit
needs: [ version, api-docker-matrix ]
with:
Expand Down Expand Up @@ -85,7 +85,7 @@ jobs:
repository: walt-id/waltid-unified-build
ref: ${{ github.ref_name }}
release:
uses: walt-id/waltid-identity/.github/workflows/create-release.yml@6bb27c98fb66d9525dcc5ed8b0e703ff07a18c4a
uses: walt-id/waltid-identity/.github/workflows/create-release.yml@0601e9b457f63238dfbc2a9a4fa54b7b1aee0a9d
secrets: inherit
needs: [ version, tag ]
with:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/gradle-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
runs-on: macos-26
steps:
- name: Checkout all repos with ref fallback
uses: walt-id/waltid-identity/.github/actions/checkout-repos@4296a7f80cacf7e60cb1a20321956768892eb7e3
uses: walt-id/waltid-identity/.github/actions/checkout-repos@73cf58a0edcc4c978304fdfd1a91372d34f65da2
with:
token: ${{ secrets.GH_ACCESS_TOKEN || github.token }}
ref: ${{ github.head_ref || github.ref_name }}
Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
runs-on: macos-26
steps:
- name: Checkout all repos with ref fallback
uses: walt-id/waltid-identity/.github/actions/checkout-repos@4296a7f80cacf7e60cb1a20321956768892eb7e3
uses: walt-id/waltid-identity/.github/actions/checkout-repos@73cf58a0edcc4c978304fdfd1a91372d34f65da2
with:
token: ${{ secrets.GH_ACCESS_TOKEN || github.token }}
ref: ${{ github.head_ref || github.ref_name }}
Expand Down Expand Up @@ -96,7 +96,7 @@ jobs:
runs-on: macos-26
steps:
- name: Checkout all repos with ref fallback
uses: walt-id/waltid-identity/.github/actions/checkout-repos@4296a7f80cacf7e60cb1a20321956768892eb7e3
uses: walt-id/waltid-identity/.github/actions/checkout-repos@73cf58a0edcc4c978304fdfd1a91372d34f65da2
with:
token: ${{ secrets.GH_ACCESS_TOKEN || github.token }}
ref: ${{ github.head_ref || github.ref_name }}
Expand Down Expand Up @@ -127,7 +127,7 @@ jobs:
runs-on: macos-26
steps:
- name: Checkout all repos with ref fallback
uses: walt-id/waltid-identity/.github/actions/checkout-repos@4296a7f80cacf7e60cb1a20321956768892eb7e3
uses: walt-id/waltid-identity/.github/actions/checkout-repos@73cf58a0edcc4c978304fdfd1a91372d34f65da2
with:
token: ${{ secrets.GH_ACCESS_TOKEN || github.token }}
ref: ${{ github.head_ref || github.ref_name }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
sudo swapon /swapfile
- name: Checkout all repos with ref fallback
uses: walt-id/waltid-identity/.github/actions/checkout-repos@864f84343fdeea17f6f63434bc8036c39f178dc7
uses: walt-id/waltid-identity/.github/actions/checkout-repos@73cf58a0edcc4c978304fdfd1a91372d34f65da2
with:
token: ${{ secrets.GH_ACCESS_TOKEN }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/mobile-sdk-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
XCODE_DEVELOPER_DIR: /Applications/Xcode_26.6.app/Contents/Developer
steps:
- name: Checkout all repos with ref fallback
uses: walt-id/waltid-identity/.github/actions/checkout-repos@4296a7f80cacf7e60cb1a20321956768892eb7e3
uses: walt-id/waltid-identity/.github/actions/checkout-repos@73cf58a0edcc4c978304fdfd1a91372d34f65da2
with:
token: ${{ secrets.GH_ACCESS_TOKEN || github.token }}
ref: ${{ github.head_ref || github.ref_name }}
Expand Down Expand Up @@ -143,7 +143,7 @@ jobs:

- name: Checkout all repos with ref fallback
if: ${{ inputs.deploy == true }}
uses: walt-id/waltid-identity/.github/actions/checkout-repos@4296a7f80cacf7e60cb1a20321956768892eb7e3
uses: walt-id/waltid-identity/.github/actions/checkout-repos@73cf58a0edcc4c978304fdfd1a91372d34f65da2
with:
token: ${{ secrets.GH_ACCESS_TOKEN || github.token }}
ref: ${{ github.head_ref || github.ref_name }}
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
with:
preferred: ${{ inputs.release_version }}
gradle:
uses: walt-id/waltid-identity/.github/workflows/gradle.yml@6bb27c98fb66d9525dcc5ed8b0e703ff07a18c4a
uses: walt-id/waltid-identity/.github/workflows/gradle.yml@0601e9b457f63238dfbc2a9a4fa54b7b1aee0a9d
secrets: inherit
needs: version
with:
Expand All @@ -26,7 +26,7 @@ jobs:
with:
jsonpath: ".github/workflows/data/docker-matrix.json"
docker:
uses: walt-id/waltid-identity/.github/workflows/docker.yml@6bb27c98fb66d9525dcc5ed8b0e703ff07a18c4a
uses: walt-id/waltid-identity/.github/workflows/docker.yml@0601e9b457f63238dfbc2a9a4fa54b7b1aee0a9d
secrets: inherit
needs: [ version, docker-matrix ]
with:
Expand All @@ -39,7 +39,7 @@ jobs:
with:
jsonpath: ".github/workflows/data/api-docker-matrix.json"
api-docker:
uses: walt-id/waltid-identity/.github/workflows/api-docker.yml@6bb27c98fb66d9525dcc5ed8b0e703ff07a18c4a
uses: walt-id/waltid-identity/.github/workflows/api-docker.yml@0601e9b457f63238dfbc2a9a4fa54b7b1aee0a9d
secrets: inherit
needs: [ version, api-docker-matrix ]
with:
Expand All @@ -48,15 +48,15 @@ jobs:
tags: '["stable", "latest"]'
publish: true
sdk-docs:
uses: walt-id/waltid-identity/.github/workflows/mobile-sdk-docs.yml@6bb27c98fb66d9525dcc5ed8b0e703ff07a18c4a
uses: walt-id/waltid-identity/.github/workflows/mobile-sdk-docs.yml@0601e9b457f63238dfbc2a9a4fa54b7b1aee0a9d
secrets: inherit
needs: version
with:
deploy: true
version: ${{ needs.version.outputs.release_version }}
tags: '["stable", "latest"]'
deploy:
uses: walt-id/waltid-identity/.github/workflows/deployment.yml@6bb27c98fb66d9525dcc5ed8b0e703ff07a18c4a
uses: walt-id/waltid-identity/.github/workflows/deployment.yml@0601e9b457f63238dfbc2a9a4fa54b7b1aee0a9d
secrets: inherit
needs: [ version, gradle, docker, api-docker, sdk-docs ]
with:
Expand Down Expand Up @@ -138,7 +138,7 @@ jobs:
version: ${{ needs.version.outputs.release_version }}
repository: walt-id/waltid-unified-build
release:
uses: walt-id/waltid-identity/.github/workflows/create-release.yml@6bb27c98fb66d9525dcc5ed8b0e703ff07a18c4a
uses: walt-id/waltid-identity/.github/workflows/create-release.yml@0601e9b457f63238dfbc2a9a4fa54b7b1aee0a9d
secrets: inherit
needs: [ version, tag ]
with:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
with:
preferred: ${{ inputs.release_version }}
gradle:
uses: walt-id/waltid-identity/.github/workflows/gradle.yml@6bb27c98fb66d9525dcc5ed8b0e703ff07a18c4a
uses: walt-id/waltid-identity/.github/workflows/gradle.yml@0601e9b457f63238dfbc2a9a4fa54b7b1aee0a9d
secrets: inherit
needs: version
with:
Expand All @@ -24,7 +24,7 @@ jobs:
with:
jsonpath: ".github/workflows/data/docker-matrix.json"
docker:
uses: walt-id/waltid-identity/.github/workflows/docker.yml@6bb27c98fb66d9525dcc5ed8b0e703ff07a18c4a
uses: walt-id/waltid-identity/.github/workflows/docker.yml@0601e9b457f63238dfbc2a9a4fa54b7b1aee0a9d
secrets: inherit
needs: [ version, docker-matrix ]
with:
Expand All @@ -37,7 +37,7 @@ jobs:
with:
jsonpath: ".github/workflows/data/api-docker-matrix.json"
api-docker:
uses: walt-id/waltid-identity/.github/workflows/api-docker.yml@6bb27c98fb66d9525dcc5ed8b0e703ff07a18c4a
uses: walt-id/waltid-identity/.github/workflows/api-docker.yml@0601e9b457f63238dfbc2a9a4fa54b7b1aee0a9d
secrets: inherit
needs: [ version, api-docker-matrix ]
with:
Expand All @@ -46,7 +46,7 @@ jobs:
tags: '["dev", "latest"]'
publish: true
deploy:
uses: walt-id/waltid-identity/.github/workflows/deployment.yml@6bb27c98fb66d9525dcc5ed8b0e703ff07a18c4a
uses: walt-id/waltid-identity/.github/workflows/deployment.yml@0601e9b457f63238dfbc2a9a4fa54b7b1aee0a9d
secrets: inherit
needs: [ version, gradle, docker, api-docker ]
with:
Expand Down
Loading