Skip to content

Commit

Permalink
fix: Adding values to release env
Browse files Browse the repository at this point in the history
  • Loading branch information
gcarreno committed Sep 1, 2023
1 parent cc068c7 commit 1134fa2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/release.lazarus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,10 @@ jobs:

steps:
- name: Build env from inputs.config
run: echo "cfg=${{ fromJSON(inputs.config) }}" >> "$GITHUB_ENV"
run: |
echo "win=${{ fromJSON(inputs.config).win }}" >> "$GITHUB_ENV"
echo "lin=${{ fromJSON(inputs.config).lin }}" >> "$GITHUB_ENV"
echo "osx=${{ fromJSON(inputs.config).osx }}" >> "$GITHUB_ENV"
- name: Print some values
run: |
Expand Down

0 comments on commit 1134fa2

Please sign in to comment.