Skip to content

Commit

Permalink
Fix compiler artifact name in WindowsCI (#15021)
Browse files Browse the repository at this point in the history
Before #15000 we had two
different builds of the compiler in every CI run, a release build and a
non-release. Now we only have a release build and there's no need to
differentiate by name.
Going back to `crystal` makes the install-crystal action work again.
  • Loading branch information
straight-shoota committed Sep 21, 2024
1 parent c2488f6 commit d184822
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ jobs:
- name: Download Crystal executable
uses: actions/download-artifact@v4
with:
name: crystal-release
name: crystal
path: build

- name: Restore LLVM
Expand Down Expand Up @@ -294,7 +294,7 @@ jobs:
- name: Download Crystal executable
uses: actions/download-artifact@v4
with:
name: crystal-release
name: crystal
path: build

- name: Restore LLVM
Expand Down Expand Up @@ -330,7 +330,7 @@ jobs:
- name: Download Crystal executable
uses: actions/download-artifact@v4
with:
name: crystal-release
name: crystal
path: etc/win-ci/portable

- name: Restore LLVM
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/win_build_portable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,5 +145,5 @@ jobs:
- name: Upload Crystal binaries
uses: actions/upload-artifact@v4
with:
name: ${{ inputs.release && 'crystal-release' || 'crystal' }}
name: crystal
path: crystal

0 comments on commit d184822

Please sign in to comment.