Skip to content
This repository has been archived by the owner on Jul 5, 2024. It is now read-only.

Commit

Permalink
Add new tags for ci
Browse files Browse the repository at this point in the history
  • Loading branch information
ImpXada committed Apr 2, 2024
1 parent eecdbf2 commit 075ecd5
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 6 deletions.
9 changes: 8 additions & 1 deletion .github/workflows/sudachi-android-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
11 changes: 9 additions & 2 deletions .github/workflows/suyu-android-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion .github/workflows/suyu-windows-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
12 changes: 10 additions & 2 deletions .github/workflows/turnip-android-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 075ecd5

Please sign in to comment.