diff --git a/.github/workflows/sudachi-android-build.yml b/.github/workflows/sudachi-android-build.yml index 099ecba..7366a8b 100644 --- a/.github/workflows/sudachi-android-build.yml +++ b/.github/workflows/sudachi-android-build.yml @@ -64,7 +64,14 @@ jobs: mv $(find app/build/outputs/apk -type f | grep -E "\.apk$") ${{ github.workspace }}/sudachi-${{ github.event.inputs.flavor || 'ea' }}-${{ steps.version.outputs.date }}-${{ steps.version.outputs.version }}.apk ccache -s - - name: Release Sudachi + - name: Release Sudachi (Sudachi-Android) + uses: softprops/action-gh-release@v2 + with: + name: Sudachi Android ${{ steps.version.outputs.date }} + tag_name: sudachi-android + files: ${{ github.workspace }}/sudachi-${{ github.event.inputs.flavor || 'ea' }}-${{ steps.version.outputs.date }}-${{ steps.version.outputs.version }}.apk + + - name: Release Sudachi ${{ steps.version.outputs.date }} uses: softprops/action-gh-release@v2 with: name: ${{ steps.version.outputs.date }} diff --git a/.github/workflows/suyu-android-build.yml b/.github/workflows/suyu-android-build.yml index 79ed80f..5e55f04 100644 --- a/.github/workflows/suyu-android-build.yml +++ b/.github/workflows/suyu-android-build.yml @@ -60,9 +60,16 @@ jobs: mv app/build/outputs/apk/mainline/release/app-mainline-release.apk ${{ github.workspace }}/suyu-${{ steps.version.outputs.date }}-${{ steps.version.outputs.version }}.apk ccache -s - - name: Release Suyu + - name: Release Suyu Android (Suyu-Android) + uses: softprops/action-gh-release@v2 + with: + name: Suyu Android ${{ steps.version.outputs.date }} + tag_name: suyu-android + files: ${{ github.workspace }}/suyu-${{ steps.version.outputs.date }}-${{ steps.version.outputs.version }}.apk + + - name: Release Suyu Android ${{ steps.version.outputs.date }} uses: softprops/action-gh-release@v2 with: name: ${{ steps.version.outputs.date }} tag_name: ${{ steps.version.outputs.date }} - files: ${{ github.workspace }}/suyu-${{ steps.version.outputs.date }}-${{ steps.version.outputs.version }}.apk + files: ${{ github.workspace }}/suyu-${{ steps.version.outputs.date }}-${{ steps.version.outputs.version }}.apk \ No newline at end of file diff --git a/.github/workflows/suyu-windows-build.yml b/.github/workflows/suyu-windows-build.yml index 19d4289..da6ee74 100644 --- a/.github/workflows/suyu-windows-build.yml +++ b/.github/workflows/suyu-windows-build.yml @@ -72,7 +72,7 @@ jobs: - name: Release Suyu Windows (Suyu-Windows) uses: softprops/action-gh-release@v2 with: - name: Suyu-Windows + name: Suyu Windows ${{ steps.version.outputs.date }} tag_name: suyu-windows files: | suyu*.zip diff --git a/.github/workflows/turnip-android-build.yml b/.github/workflows/turnip-android-build.yml index b822da9..abf8cec 100644 --- a/.github/workflows/turnip-android-build.yml +++ b/.github/workflows/turnip-android-build.yml @@ -38,10 +38,18 @@ jobs: echo "date=$(date -u "+%Y%m%d")" >> $GITHUB_OUTPUT echo "tag=$(git describe --tags --always)" >> $GITHUB_OUTPUT - - name: Release Turnip + - name: Release Turnip (Mesa-Turnip-Android) + uses: softprops/action-gh-release@v2 + with: + name: Mesa Turnip Android ${{ steps.version.outputs.date }} + tag_name: mesa-turnip-android + files: | + ${{ github.workspace }}/turnip_workdir/turnip-${{ steps.version.outputs.date }}-${{ steps.version.outputs.tag }}.zip + + - name: Release Turnip ${{ steps.version.outputs.date }} uses: softprops/action-gh-release@v2 with: name: ${{ steps.version.outputs.date }} tag_name: ${{ steps.version.outputs.date }} files: | - ${{ github.workspace }}/turnip_workdir/turnip-${{ steps.version.outputs.date }}-${{ steps.version.outputs.tag }}.zip + ${{ github.workspace }}/turnip_workdir/turnip-${{ steps.version.outputs.date }}-${{ steps.version.outputs.tag }}.zip \ No newline at end of file