Skip to content

Commit

Permalink
Fix syntax passing env vars to called actions.
Browse files Browse the repository at this point in the history
  • Loading branch information
Roman Dmitrienko committed Jun 11, 2024
1 parent c650180 commit db67d9a
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/build-and-publish-bindings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,24 @@ env:
RUST_VERSION: 1.78

jobs:
setup:
runs-on: ubuntu-latest
outputs:
rust_version: ${{ env.RUST_VERSION }}
steps:
- run: echo "setting output variables"

generate-bindings:
needs: setup
uses: ./.github/workflows/gen-bindings-go.yaml
with:
rust_version: ${{ env.RUST_VERSION }}
rust_version: ${{ needs.setup.outputs.rust_version }}

build-libraries:
needs: setup
uses: ./.github/workflows/build-libraries.yaml
with:
rust_version: ${{ env.RUST_VERSION }}
rust_version: ${{ needs.setup.outputs.rust_version }}

publish-ldk-node-go:
needs:
Expand Down

0 comments on commit db67d9a

Please sign in to comment.