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 committed Dec 23, 2023
1 parent 5d0423a commit 040f0a2
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,15 +117,18 @@ 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: 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 040f0a2

Please sign in to comment.