Skip to content

Commit

Permalink
fixup! Basic overrides test
Browse files Browse the repository at this point in the history
  • Loading branch information
omus committed Jan 28, 2024
1 parent e31b690 commit bf0cbd3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,15 +58,15 @@ jobs:
id: action-artifact
with:
workflow: Build.yaml
name: ${{ steps.check.output.key }}
name: ${{ needs.prerelease.outputs.key }}
- shell: julia --color=yes {0}
run: |
open(joinpath(first(Base.DEPOT_PATH), "artifacts", "Overrides.toml", "w") do io
open(joinpath(first(Base.DEPOT_PATH), "artifacts", "Overrides.toml"), "w") do io
println(io, "[dc5dba14-91b3-4cab-a142-028a31da12f7]")
println(io, "tzjdata = "$(pwd)/${{ steps.prerelease.outputs.key }}")
println(io, "tzjdata = "$(pwd)/${{ needs.prerelease.outputs.key }}")
end
- run: |
ls -la ${{ steps.prerelease.outputs.key }}
ls -la ${{ needs.prerelease.outputs.key }}
cat ~/.julia/artifacts/Overrides.toml
- uses: julia-actions/setup-julia@v1
with:
Expand Down

0 comments on commit bf0cbd3

Please sign in to comment.