Skip to content

Commit

Permalink
Merge pull request #49 from ben-wes/build-tests
Browse files Browse the repository at this point in the history
fix deken upload
  • Loading branch information
agraef authored Aug 25, 2024
2 parents 665531f + e17d804 commit 30ecb8a
Showing 1 changed file with 16 additions and 6 deletions.
22 changes: 16 additions & 6 deletions .github/workflows/makefile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -178,15 +178,25 @@ jobs:
if: ${{ !contains(github.ref, 'test') }} # upload if not a "test" tag (maybe should be more restrictive?)
runs-on: ubuntu-latest
needs: [merge-for-deken]
strategy:
matrix:
os: [windows, macos, ubuntu]

steps:
- uses: actions/checkout@v4
with:
path: pdlua-src

- uses: actions/download-artifact@v4
with:
name: pdlua-${{ matrix.os }}
path: pdlua-${{ matrix.os }}
name: pdlua-windows
path: pdlua-windows

- uses: actions/download-artifact@v4
with:
name: pdlua-macos
path: pdlua-macos

- uses: actions/download-artifact@v4
with:
name: pdlua-ubuntu
path: pdlua-ubuntu

- name: upload deken package
shell: bash
Expand Down

0 comments on commit 30ecb8a

Please sign in to comment.