Skip to content

Commit

Permalink
Update build workflow to organize downloaded artifacts and adjust pac…
Browse files Browse the repository at this point in the history
…kage source paths
  • Loading branch information
dz0ny committed Dec 3, 2024
1 parent 02e53e9 commit 3d80a6e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
with:
name: build
- name: Display structure of downloaded files
run: ls -R
run: mkdir -p pkg && mv *.deb pkg && mv *.rpm pkg && ls -l pkg
- uses: ./.github/actions/devenv
with:
authToken: ${{ secrets.CACHIX_AUTH_TOKEN }}
Expand Down
6 changes: 3 additions & 3 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
vmTest = inputs.nix-vm-test.lib.x86_64-linux.debian."13" {
sharedDirs = {
packageDir = {
source = "${./.}/dist";
source = "${./.}/pkg";
target = "/mnt/package";
};
};
Expand All @@ -83,7 +83,7 @@
vmTest = inputs.nix-vm-test.lib.x86_64-linux.fedora."40" {
sharedDirs = {
packageDir = {
source = "${./.}/dist";
source = "${./.}/pkg";
target = "/mnt/package";
};
};
Expand All @@ -96,7 +96,7 @@
vmTest = inputs.nix-vm-test.lib.x86_64-linux.ubuntu."23_10" {
sharedDirs = {
packageDir = {
source = "${./.}/dist";
source = "${./.}/pkg";
target = "/mnt/package";
};
};
Expand Down

0 comments on commit 3d80a6e

Please sign in to comment.