Skip to content

Commit

Permalink
Handle name collisions
Browse files Browse the repository at this point in the history
  • Loading branch information
pavpanchekha committed Feb 2, 2024
1 parent 4fb7f3e commit 50d9fb8
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,17 +41,24 @@ jobs:
- name: Create tarball
run: raco pkg create --format zip egg-herbie

- name: Rename tarballs
run: |
mv egg-herbie.zip egg-herbie-${{ matrix.os-name }}.zip
mv egg-herbie.zip.CHECKSUM egg-herbie-${{ matrix.os-name }}.zip.CHECKSUM
- name: Upload pre-built egg-herbie
uses: actions/upload-artifact@v4
with:
path: egg-herbie.zip
path: egg-herbie-${{ matrix.os-name }}.zip
name: egg-herbie-${{ matrix.os-name }}.zip
if-no-files-found: error

- name: Upload pre-built egg-herbie checksum
uses: actions/upload-artifact@v4
with:
path: egg-herbie.zip.CHECKSUM
path: egg-herbie-${{ matrix.os-name }}.zip.CHECKSUM
name: egg-herbie-${{ matrix.os-name }}.zip.CHECKSUM
if-no-files-found: error

release:
name: Create Initial Release
Expand Down

0 comments on commit 50d9fb8

Please sign in to comment.