Skip to content

Commit

Permalink
fix: Release artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
4silvertooth authored Apr 25, 2023
1 parent eac4f87 commit eddda63
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,23 +33,23 @@ jobs:
if: ${{ matrix.os == 'windows-latest' }}
uses: actions/upload-artifact@v3
with:
name: sciter-pdf-${{ matrix.os }}.dll
name: sciter-pdf.dll
path: build/Release/*.dll
retention-days: 1

- name: Upload .so file (if any exists)
if: ${{ matrix.os == 'ubuntu-latest' }}
uses: actions/upload-artifact@v3
with:
name: sciter-pdf-${{ matrix.os }}.so
name: sciter-pdf.so
path: build/*.so
retention-days: 1

- name: Upload .dylib file (if any exists)
if: ${{ matrix.os == 'macos-latest' }}
uses: actions/upload-artifact@v3
with:
name: sciter-pdf-${{ matrix.os }}.dylib
name: sciter-pdf.dylib
path: build/*.dylib
retention-days: 1

Expand All @@ -71,6 +71,6 @@ jobs:
prerelease: true
title: "Development Build"
files: |
sciter-pdf-windows-latest/*.zip
sciter-pdf-macos-latest/*.zip
sciter-pdf-ubuntu-latest/*.zip
sciter-pdf.dll
sciter-pdf.so
sciter-pdf.dylib

0 comments on commit eddda63

Please sign in to comment.