From fb398b9b8428b3924aec115d9bb5f6984dfbed1b Mon Sep 17 00:00:00 2001 From: Aren Elchinyan Date: Sun, 19 Nov 2023 09:50:15 +0300 Subject: [PATCH] =?UTF-8?q?=D0=A2=D0=B5=D0=BF=D0=B5=D1=80=D1=8C=20CI=20?= =?UTF-8?q?=D0=B4=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB=D1=8F=D0=B5=D1=82=20=D0=B2?= =?UTF-8?q?=D1=81=D0=B5=20=D1=84=D0=B0=D0=B9=D0=BB=D1=8B=20=D0=B2=20=D1=80?= =?UTF-8?q?=D0=B5=D0=BB=D0=B8=D0=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/release.yml | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index dd3b5d0..315269b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -30,11 +30,11 @@ jobs: - name: save run: | - mkdir -p release - cp ${{ github.workspace }}/kernel.elf release/ - cp ${{ github.workspace }}/bmosp.hdd release/ - cp ${{ github.workspace }}/bmosp.iso release/ - cp ${{ github.workspace }}/LICENSE release/ + mkdir -p ${{ github.workspace }}/release + cp ${{ github.workspace }}/kernel.elf ${{ github.workspace }}/release/ + cp ${{ github.workspace }}/bmosp.hdd ${{ github.workspace }}/release/ + cp ${{ github.workspace }}/bmosp.iso ${{ github.workspace }}/release/ + cp ${{ github.workspace }}/LICENSE ${{ github.workspace }}/release/ - uses: actions/upload-artifact@v3 with: @@ -57,6 +57,10 @@ jobs: steps: - uses: actions/download-artifact@v3 + + - name: check + run: | + ls -la release - name: release uses: softprops/action-gh-release@v0.1.15 @@ -64,7 +68,12 @@ jobs: name: ${{ inputs.test_label }} tag_name: autobuild draft: true - files: '**/release/*' + files: | + ${{ github.workspace }}/release/kernel.elf + ${{ github.workspace }}/release/bmosp.hdd + ${{ github.workspace }}/release/bmosp.iso + ${{ github.workspace }}/release/LICENSE + body: | ${{ inputs.test_label }}