diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 0abe9a0..83546b4 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -43,15 +43,18 @@ jobs: - name: Compress ISO run: | cd ${{ github.workspace }} - ISONAME=$(ls ${{ github.workspace }} | grep .iso | rev | cut -c 5- | rev) - tar -czvf ${ISONAME}.tar.gz ${{ github.workspace }}/${ISONAME}.iso + mkdir ISO + mv ${{ github.workspace }}/*.iso ${{ github.workspace }}/ISO + cd ISO + ISONAME=$(ls ${{ github.workspace }}/ISO | grep .iso | rev | cut -c 5- | rev) + tar -czvf ${ISONAME}.tar.gz ${{ github.workspace }}/ISO/${ISONAME}.iso ls -l - name: Release if: github.ref == 'refs/heads/kinetic-16,4' uses: softprops/action-gh-release@v1 with: - files: ${{ github.workspace }}/*.tar.gz + files: ${{ github.workspace }}/ISO/*.tar.gz tag_name: v${{ steps.tag.outputs.tag }} body_path: ${{ github.workspace }}/.github/workflows/instructions.txt draft: false