Skip to content

Commit

Permalink
Fix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
OrigamingWasTaken committed Feb 26, 2024
1 parent 4468167 commit 18a03e4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,29 +34,29 @@ jobs:
- name: Upload (linux_arm64)
uses: actions/upload-artifact@v4
with:
name: ${{ github.repository }}_linux_arm64
name: ${{ github.event.repository.name }}_linux_arm64
path: dist/linux_arm64.zip

- name: Upload (linux_armhf)
uses: actions/upload-artifact@v4
with:
name: ${{ github.repository }}_linux_armhf
name: ${{ github.event.repository.name }}_linux_armhf
path: dist/linux_armhf.zip

- name: Upload (linux_x64)
uses: actions/upload-artifact@v4
with:
name: ${{ github.repository }}_linux_x64
name: ${{ github.event.repository.name }}_linux_x64
path: dist/linux_x64.zip

- name: Upload (mac_universal)
uses: actions/upload-artifact@v4
with:
name: ${{ github.repository }}_mac_universal
name: ${{ github.event.repository.name }}_mac_universal
path: dist/mac_universal.zip

- name: Upload (win_x64)
uses: actions/upload-artifact@v4
with:
name: ${{ github.repository }}_win_x64
name: ${{ github.event.repository.name }}_win_x64
path: dist/win_x64.zip

0 comments on commit 18a03e4

Please sign in to comment.