Initial commit for Updater #2
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
name: Make Canary Release | |
on: | |
push: | |
branches: | |
- 'beta' | |
paths: | |
- '.github/edit2MakeNewBeta' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Source Code Download | |
run: git clone --branch canary --single-branch --recurse-submodules https://github.com/DHD2280/Oxygen-Customizer.git . | |
- name: JDK 17 Setup | |
uses: actions/[email protected] | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
cache: gradle | |
- name: Shell Scripts Permissions | |
run: chmod +x .github/*.sh | |
- name: Changelog Generation | |
run: .github/extractChanges.sh | |
- name: Version Bump | |
run: .github/bumpVersion.sh ${{ github.run_id }} | |
- name: Gradlew Permissions | |
run: chmod +x gradlew | |
- name: Signature files preparation | |
run: | | |
if [ ! -z "${{ secrets.KEYSTORE }}" ]; then | |
echo storePassword='${{ secrets.KEYSTORE_PASSWORD }}' >> keystore.properties | |
echo keyAlias='${{ secrets.KEY_ALIAS }}' >> keystore.properties | |
echo keyPassword='${{ secrets.KEY_PASSWORD }}' >> keystore.properties | |
echo storeFile='${{ github.workspace }}/key.jks' >> keystore.properties | |
echo ${{ secrets.KEYSTORE }} | base64 --decode > ${{ github.workspace }}/key.jks | |
fi | |
- name: Gradle Build | |
run: ./gradlew assembleRelease | |
- name: Upload Xposed Artifact to Actions | |
uses: actions/[email protected] | |
with: | |
name: OxygenCustomizer.apk | |
path: output | |
- name: Oxygen Customizer Binary Release | |
uses: ncipollo/[email protected] | |
with: | |
tag: 'beta_builds' | |
name: 'Latest Beta' | |
omitBodyDuringUpdate: true | |
prerelease: true | |
allowUpdates: true | |
replacesArtifacts: true | |
draft: false | |
artifacts: 'output/*.*' | |
- name: Version Bump Commit | |
uses: github-actions-x/[email protected] | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
push-branch: 'beta' | |
commit-message: 'Version update: Release' | |
force-add: 'true' | |
files: app/build.gradle latestVersion.json BetaChangelog.md latestBeta.json | |
name: GitHub | |
email: [email protected] |