Skip to content

Commit

Permalink
Enhance build workflow by adding file structure display and updating …
Browse files Browse the repository at this point in the history
…package source paths
  • Loading branch information
dz0ny committed Dec 3, 2024
1 parent b2837a4 commit 02e53e9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@ jobs:
- uses: actions/download-artifact@v4
with:
name: build
path: dist
- name: Display structure of downloaded files
run: ls -R
- 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 = "${./.}";
source = "${./.}/dist";
target = "/mnt/package";
};
};
Expand All @@ -83,7 +83,7 @@
vmTest = inputs.nix-vm-test.lib.x86_64-linux.fedora."40" {
sharedDirs = {
packageDir = {
source = "${./.}";
source = "${./.}/dist";
target = "/mnt/package";
};
};
Expand All @@ -96,7 +96,7 @@
vmTest = inputs.nix-vm-test.lib.x86_64-linux.ubuntu."23_10" {
sharedDirs = {
packageDir = {
source = "${./.}";
source = "${./.}/dist";
target = "/mnt/package";
};
};
Expand Down

0 comments on commit 02e53e9

Please sign in to comment.