Skip to content

ci: fix inherit secrets for reusable workflow #3569

ci: fix inherit secrets for reusable workflow

ci: fix inherit secrets for reusable workflow #3569

Workflow file for this run

name: Build on every push except main branch
on:
push:
branches-ignore:
- main
jobs:
version:
uses: walt-id/waltid-identity/.github/workflows/version.yml@c69d2155372700071dad887fa6339b51e0266be5
gradle-build:
uses: walt-id/waltid-identity/.github/workflows/build-gradle.yml@c69d2155372700071dad887fa6339b51e0266be5
secrets: inherit
needs: version
with:
version: ${{ needs.version.outputs.release_version }}
docker-build:
uses: walt-id/waltid-identity/.github/workflows/build-docker.yml@c69d2155372700071dad887fa6339b51e0266be5
secrets: inherit
needs: version
with:
version: ${{ needs.version.outputs.release_version }}