-
-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
115 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
name: Canary | ||
|
||
on: | ||
schedule: | ||
- cron: "0 0 * * *" | ||
workflow_dispatch: | ||
|
||
env: | ||
SKIP_RELEASE: "yes" | ||
SIGNING_KEYSTORE_FILE: ./secrets/signing_key.jks | ||
BUILD_APK_FILE: ./app/build/outputs/apk/release/app-release.apk | ||
BUILD_AAB_FILE: ./app/build/outputs/bundle/release/app-release.aab | ||
OUTPUT_DIR: ./dist | ||
|
||
jobs: | ||
canary-build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20.x | ||
cache: npm | ||
|
||
- uses: actions/setup-java@v4 | ||
with: | ||
distribution: zulu | ||
java-version: 17 | ||
cache: gradle | ||
|
||
- name: 🚧 Do prerequisites | ||
run: npm ci | ||
|
||
- name: 🔢 Get version | ||
id: app_version | ||
run: echo "version=$(npm run --silent version:print-canary)" >> $GITHUB_OUTPUT | ||
|
||
- name: 🔎 Check for release | ||
run: | | ||
last_tag=$(npm run --silent git:latest-tag) | ||
echo "SKIP_RELEASE=$(npm run --silent git:no-affects-app-yn -- $last_tag)" >> $GITHUB_ENV | ||
env: | ||
TAG_NAME: v${{ steps.app_version.outputs.version }} | ||
|
||
- name: 🔨 Generate certificate | ||
if: env.SKIP_RELEASE == 'no' | ||
run: | | ||
mkdir -p $(dirname $SIGNING_KEYSTORE_FILE) | ||
echo $SIGNING_KEYSTORE_FILE_CONTENT | base64 -di > $SIGNING_KEYSTORE_FILE | ||
env: | ||
SIGNING_KEYSTORE_FILE_CONTENT: ${{ secrets.SIGNING_KEYSTORE_FILE }} | ||
|
||
- name: 🔨 Build assets | ||
if: env.SKIP_RELEASE == 'no' | ||
run: | | ||
npm run prebuild | ||
chmod +x ./gradlew | ||
./gradlew assemble | ||
./gradlew bundle | ||
npm run postbuild | ||
env: | ||
APP_VERSION_NAME: ${{ steps.app_version.outputs.version }} | ||
SIGNING_KEYSTORE_PASSWORD: ${{ secrets.SIGNING_KEYSTORE_PASSWORD }} | ||
SIGNING_KEY_ALIAS: ${{ secrets.SIGNING_KEY_ALIAS }} | ||
SIGNING_KEY_PASSWORD: ${{ secrets.SIGNING_KEY_PASSWORD }} | ||
|
||
- name: 📝 Rename assets | ||
if: env.SKIP_RELEASE == 'no' | ||
run: | | ||
mkdir -p $OUTPUT_DIR | ||
mv $BUILD_APK_FILE $OUTPUT_DIR/symphony-v$APP_VERSION_NAME.apk | ||
mv $BUILD_AAB_FILE $OUTPUT_DIR/symphony-v$APP_VERSION_NAME.aab | ||
env: | ||
APP_ID_SUFFIX: .canary | ||
APP_VERSION_NAME: ${{ steps.app_version.outputs.version }} | ||
|
||
- name: 🚀 Upload assets | ||
if: env.SKIP_RELEASE == 'no' | ||
uses: ncipollo/release-action@v1 | ||
with: | ||
tag: v${{ steps.app_version.outputs.version }} | ||
artifacts: ${{ env.OUTPUT_DIR }}/* | ||
body: "Refer [commits of v${{ steps.app_version.outputs.version }}](https://github.com/zyrouge/symphony/commits/v${{ steps.app_version.outputs.version }}) for the changes." | ||
generateReleaseNotes: false | ||
draft: true | ||
artifactErrorsFailBuild: true | ||
|
||
- name: 🔖 Was Release skipped? | ||
if: env.SKIP_RELEASE == 'yes' | ||
run: echo "Skipping since tag $TAG_NAME already exists" | ||
env: | ||
TAG_NAME: v${{ steps.app_version.outputs.version }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import { Git } from "../helpers/git"; | ||
import { Versioner } from "../helpers/version"; | ||
|
||
const main = async () => { | ||
const { versionCode } = await Versioner.getVersion(); | ||
const sha = await Git.getLatestRevisionShort(); | ||
const time = await Git.getRevisionDate(sha); | ||
const year = time.getFullYear(); | ||
const month = time.getMonth() + 1; | ||
const versionName = `${year}.${month}.${versionCode + 1}-canary+${sha}`; | ||
console.log(versionName); | ||
}; | ||
|
||
main(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters