Skip to content

Commit

Permalink
experimental way of binding envvars
Browse files Browse the repository at this point in the history
  • Loading branch information
duckfullstop committed Jan 18, 2025
1 parent bb4aadf commit f5e6f2e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,10 @@ jobs:
- name: Dump upstream train version to file
shell: bash
run: |
cat $GITHUB_OUTPUT > version.txt
echo version=${{steps.version.outputs.version}} >> version.txt
echo semver_major=${{steps.version.outputs.semver_major}} > version.txt
echo semver_minor=${{steps.version.outputs.semver_minor}} > version.txt
echo semver_patch=${{steps.version.outputs.semver_patch}} > version.txt
cat version.txt
- name: Upload upstream train version information
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit f5e6f2e

Please sign in to comment.