From 1bc2b72b0f4309718912b148c7b56fde838485ec Mon Sep 17 00:00:00 2001 From: VHSgunzo Date: Fri, 25 Oct 2024 23:53:34 +0300 Subject: [PATCH] v0.0.1 --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 237a9e9..6deb7fa 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -97,10 +97,10 @@ jobs: - name: Add magic run: > echo ==============================================RI==============================================; - ls -1 uruntime-runimage*|xargs -I {} sh -c "echo -ne 'RI\x02'|dd of={} bs=1 count=3 seek=8 conv=notrunc"; + ls -1 uruntime-runimage*|xargs -I {} sh -c 'echo -ne "RI\x02"|dd of={} bs=1 count=3 seek=8 conv=notrunc'; echo ==============================================AI==============================================; - ls -1 uruntime-appimage*|xargs -I {} sh -c "echo -ne 'AI\x02'|dd of={} bs=1 count=3 seek=8 conv=notrunc"; + ls -1 uruntime-appimage*|xargs -I {} sh -c 'echo -ne "AI\x02"|dd of={} bs=1 count=3 seek=8 conv=notrunc'; - name: Release uses: softprops/action-gh-release@v1