Skip to content

Commit

Permalink
More fun with spaces
Browse files Browse the repository at this point in the history
Signed-off-by: Ronald G. Minnich <[email protected]>
  • Loading branch information
rminnich authored and orangecms committed May 2, 2024
1 parent 1e2906c commit 1e5b866
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,18 +29,18 @@ jobs:
-o "${{ matrix.arch }}-${{ matrix.template }}.cpio" \
${{ matrix.template }}
xz --check=crc32 -9 --lzma2=dict=1MiB \
--stdout ${{ matrix.arch }}-${{ matrix.template }}.cpio | \
--stdout "${{ matrix.arch }}-${{ matrix.template }}.cpio" | \
dd conv=sync bs=512 \
of=${{ matrix.arch }}-${{ matrix.template }}.cpio.xz
of="${{ matrix.arch }}-${{ matrix.template }}.cpio.xz"
runvmtest -- bash -c "cp \$VMTEST_KERNEL ./kernel-x86_64"
- name: Upload
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ github.ref }}
file: ${{ matrix.arch }}-${{ matrix.template }}.cpio.xz
asset_name: u-root_${{ matrix.arch }}_${{ matrix.template }}.cpio.xz
file: "${{ matrix.arch }}-${{ matrix.template }}.cpio.xz"
asset_name: "u-root_${{ matrix.arch }}_${{ matrix.template }}.cpio.xz"

- name: Upload_kernels
uses: svenstaro/upload-release-action@v2
Expand Down

0 comments on commit 1e5b866

Please sign in to comment.