Skip to content

Commit 1dcc413

Browse files
Fix error for cp command, remove spaces
1 parent 977fc15 commit 1dcc413

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ jobs:
3030
nix run nixpkgs#nixos-generators -- \
3131
--format iso --system ${{ matrix.architecture }}-linux \
3232
--flake .#${{ matrix.architecture }} --out-link result
33-
- name: Rename generated ISO file to reflect version and architecture
33+
- name: Copy and rename generated ISO file to reflect version and architecture
3434
run: |
35-
REAL_ISO_FILENAME = $(readlink -f $(find result/iso/ -name "nixos-*.iso" -print -quit))
35+
REAL_ISO_FILENAME=$(readlink -f $(find result/iso/ -name "nixos-*.iso" -print -quit))
3636
cp "$REAL_ISO_FILENAME" \
3737
result/iso/nixos-cloud-init-installer-${{ github.ref_name }}-${{ matrix.architecture }}.iso
3838
- name: Upload build artifact

0 commit comments

Comments
 (0)