Skip to content

Commit

Permalink
Fix bundle upload (#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
j-brn authored Dec 23, 2023
1 parent 5d0423a commit 6928024
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,15 +117,20 @@ jobs:
nix bundle
--bundler ${{ matrix.bundler.path }}
--accept-flake-config
--out-link "bundles/${{ github.event.repository.name }}-${{ matrix.system }}.${{ matrix.bundler.extension }}"
--out-link result/
.#packages.${{ matrix.system }}.${{ matrix.package }}
- name: Upload bundles
- name: Extract Bundle
run: |
mkdir bundles/
cp $(find -L result/ -type f -print -quit) bundle
- name: Upload bundle
if: startsWith(github.ref, 'refs/tags/v')
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.package }}-${{ matrix.bundler.name }}-${{ matrix.system }}
path: bundles/**
name: ${{ matrix.package }}-${{ github.ref_name }}-${{ matrix.bundler.name }}-${{ matrix.system }}.${{ matrix.bundler.extension }}
path: bundle

deploy-pages:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 6928024

Please sign in to comment.