6
0

Upgrade upload-artifact

This commit is contained in:
Jon Michael Aanes 2024-04-13 18:27:46 +02:00
parent aa76d9902c
commit da8571934a
Signed by: Jmaa
SSH Key Fingerprint: SHA256:Ab0GfHGCblESJx7JRE4fj4bFy/KRpeLhi41y4pF3sNA

View File

@ -60,22 +60,25 @@ jobs:
# Upload produced artifacts # Upload produced artifacts
- name: Uploading artifacts (love) - name: Uploading artifacts (love)
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v4
with: with:
name: "${{ github.event.repository.name }}.love" name: "${{ github.event.repository.name }}.love"
path: "${{ github.workspace }}/bin/*.love" path: "${{ github.workspace }}/bin/*.love"
if-no-files-found: error if-no-files-found: error
compression-level: 0
- name: Uploading artifacts (win64) - name: Uploading artifacts (win64)
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v4
with: with:
name: "${{ github.event.repository.name }}-win64.zip" name: "${{ github.event.repository.name }}-win64.zip"
path: "${{ github.workspace }}/bin/*-win64.zip" path: "${{ github.workspace }}/bin/*-win64.zip"
compression-level: 0
if-no-files-found: error if-no-files-found: error
- name: Uploading artifacts (macos) - name: Uploading artifacts (macos)
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v4
with: with:
name: "${{ github.event.repository.name }}-macos.zip" name: "${{ github.event.repository.name }}-macos.zip"
path: "${{ github.workspace }}/bin/*-macos.zip" path: "${{ github.workspace }}/bin/*-macos.zip"
compression-level: 0
if-no-files-found: error if-no-files-found: error
# Determine files # Determine files