Skip to content

Commit

Permalink
chore: replace preview workflow with a release one
Browse files Browse the repository at this point in the history
 * and bump version
  • Loading branch information
abdallahmehiz committed Aug 29, 2024
1 parent ebac569 commit 1e5328e
Show file tree
Hide file tree
Showing 2 changed files with 86 additions and 120 deletions.
120 changes: 0 additions & 120 deletions .github/workflows/preview.yml

This file was deleted.

86 changes: 86 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
name: Make release

permissions:
contents: write

on:
push:
tags:
- v*

jobs:
release-for-github:
name: "Release for GitHub and F-Droid"
runs-on: ubuntu-latest

steps:
- name: Checkout repo
uses: actions/checkout@v4

- name: Setup JDK 17
uses: actions/setup-java@v4
with:
distribution: 'adopt'
java-version: 17

- name: Make gradlew executable
run: chmod +x ./gradlew

- name: Build release with Gradle
run: ./gradlew assembleRelease

- name: Get tag ame
if: startsWith(github.ref, 'refs/tags/')
run: |
set -x
echo "VERSION_TAG=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_ENV
- name: Sign apk
uses: r0adkll/sign-android-release@v1
with:
releaseDirectory: app/build/outputs/apk/release
signingKeyBase64: ${{ secrets.SIGNING_KEYSTORE }}
alias: ${{ secrets.SIGNING_KEY_ALIAS }}
keyStorePassword: ${{ secrets.SIGNING_STORE_PASSWORD }}
keyPassword: ${{ secrets.KEY_PASSWORD }}
env:
BUILD_TOOLS_VERSION: "34.0.0"

- name: Copy build artifacts
run: |
set -e
declare -a apks=("universal" "arm64-v8a" "armeabi-v7a" "x86" "x86_64")
printf "%s\n" "${apks[@]}" | xargs -n 1 -I {} sh -c '
cp app/build/outputs/apk/release/app-{}-release-unsigned-signed.apk mpvKt-{}-${{ env.VERSION_TAG }}.apk
sha=$(sha256sum mpvKt-{}-r${{ env.COMMIT_COUNT }}.apk | awk '\''{ print $1 }'\'')
echo "apk-{}-sha256=$sha" >> $GITHUB_ENV'
- name: Create release
uses: softprops/action-gh-release@v1
with:
tag_name: ${{ env.VERSION_TAG }}
name: mpvKt ${{ env.VERSION_TAG }}
body: |
---
### Checksums
| Variant | SHA-256 |
| ------- | ------- |
| arm64-v8a | ${{ env.apk-arm64-v8a-sha256 }}
| armeabi-v7a | ${{ env.apk-armeabi-v7a-sha256 }}
| Universal | ${{ env.apk-universal-sha256 }}
| x86 | ${{ env.apk-x86-sha256 }}
| x86_64 | ${{ env.apk-x86_64-sha256 }} |
files: |
mpvKt-universal-${{ env.VERSION_TAG }}.apk
mpvKt-arm64-v8a-${{ env.VERSION_TAG }}.apk
mpvKt-armeabi-v7a-${{ env.VERSION_TAG }}.apk
mpvKt-x86-${{ env.VERSION_TAG }}.apk
mpvKt-x86_64-${{ env.VERSION_TAG }}.apk
prerelease: false
draft: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 1e5328e

Please sign in to comment.