Теперь CI добавляет все файлы в релиз

This commit is contained in:
Aren Elchinyan 2023-11-19 09:50:15 +03:00
parent e964524c03
commit fb398b9b84
1 changed files with 15 additions and 6 deletions

View File

@ -30,11 +30,11 @@ jobs:
- name: save - name: save
run: | run: |
mkdir -p release mkdir -p ${{ github.workspace }}/release
cp ${{ github.workspace }}/kernel.elf release/ cp ${{ github.workspace }}/kernel.elf ${{ github.workspace }}/release/
cp ${{ github.workspace }}/bmosp.hdd release/ cp ${{ github.workspace }}/bmosp.hdd ${{ github.workspace }}/release/
cp ${{ github.workspace }}/bmosp.iso release/ cp ${{ github.workspace }}/bmosp.iso ${{ github.workspace }}/release/
cp ${{ github.workspace }}/LICENSE release/ cp ${{ github.workspace }}/LICENSE ${{ github.workspace }}/release/
- uses: actions/upload-artifact@v3 - uses: actions/upload-artifact@v3
with: with:
@ -57,6 +57,10 @@ jobs:
steps: steps:
- uses: actions/download-artifact@v3 - uses: actions/download-artifact@v3
- name: check
run: |
ls -la release
- name: release - name: release
uses: softprops/action-gh-release@v0.1.15 uses: softprops/action-gh-release@v0.1.15
@ -64,7 +68,12 @@ jobs:
name: ${{ inputs.test_label }} name: ${{ inputs.test_label }}
tag_name: autobuild tag_name: autobuild
draft: true 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: | body: |
${{ inputs.test_label }} ${{ inputs.test_label }}