-
-
Notifications
You must be signed in to change notification settings - Fork 775
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
46 changed files
with
8,543 additions
and
495 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,2 @@ | ||
firstPRMergeComment: > | ||
Thank you for contributing to ReVanced. Join us on [Discord](https://revanced.app/discord) if you want to receive a contributor role. |
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,32 @@ | ||
name: Analyze Code | ||
|
||
on: | ||
push: | ||
branches: [ "main", "dev" ] | ||
paths: | ||
- "**.dart" | ||
- ".github/workflows/analyze.yml" | ||
pull_request: | ||
branches: [ "main", "dev" ] | ||
paths: | ||
- "**.dart" | ||
- ".github/workflows/analyze.yml" | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Setup Flutter | ||
uses: subosito/flutter-action@v2 | ||
with: | ||
channel: 'stable' | ||
cache: true | ||
- name: Install Flutter dependencies | ||
run: flutter pub get | ||
- name: Generate files with Builder | ||
run: flutter packages pub run build_runner build --delete-conflicting-outputs | ||
- name: Analyze code | ||
uses: ValentinVignal/action-dart-analyze@v0.15 | ||
with: | ||
fail-on: warning |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,37 +1,41 @@ | ||
name: "Android CI PR Build" | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- "**" | ||
|
||
jobs: | ||
release: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set env | ||
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV | ||
- name: Set up JDK 12 | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: '12' | ||
distribution: 'zulu' | ||
- uses: subosito/flutter-action@v2 | ||
with: | ||
channel: 'stable' | ||
- name: Set up Flutter | ||
run: flutter pub get | ||
- name: Generate files with Builder | ||
run: flutter packages pub run build_runner build --delete-conflicting-outputs | ||
- name: Build with Flutter | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run: flutter build apk | ||
- name: Add version to APK | ||
run: mv build/app/outputs/flutter-apk/app-release.apk revanced-manager-${{ env.RELEASE_VERSION }}.apk | ||
- name: Upload APK | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: revanced-manager-${{ env.RELEASE_VERSION }} | ||
path: revanced-manager-${{ env.RELEASE_VERSION }}.apk | ||
name: PR Build | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
name: Build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
# Make sure the release step uses its own credentials: | ||
# https://github.com/cycjimmy/semantic-release-action#private-packages | ||
persist-credentials: false | ||
fetch-depth: 0 | ||
- name: Setup JDK | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: '17' | ||
distribution: 'zulu' | ||
cache: 'gradle' | ||
- name: Setup Flutter | ||
uses: subosito/flutter-action@v2 | ||
with: | ||
channel: 'stable' | ||
cache: true | ||
- name: Install Flutter dependencies | ||
run: flutter pub get | ||
- name: Generate files with Builder | ||
run: flutter packages pub run build_runner build --delete-conflicting-outputs | ||
- name: Build with Flutter | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run: flutter build apk | ||
- name: Upload build | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: revanced-manager | ||
path: build/app/outputs/flutter-apk/app-release.apk |
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,68 @@ | ||
name: Release | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- main | ||
- dev | ||
jobs: | ||
release: | ||
name: Release | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
# Make sure the release step uses its own credentials: | ||
# https://github.com/cycjimmy/semantic-release-action#private-packages | ||
persist-credentials: false | ||
fetch-depth: 0 | ||
- name: Setup JDK | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: '17' | ||
distribution: 'zulu' | ||
cache: 'gradle' | ||
- name: Setup Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: '18' | ||
cache: 'npm' | ||
- name: Setup Flutter | ||
uses: subosito/flutter-action@v2 | ||
with: | ||
channel: 'stable' | ||
cache: true | ||
- name: Install Flutter dependencies | ||
run: flutter pub get | ||
- name: Generate files with Builder | ||
run: flutter packages pub run build_runner build --delete-conflicting-outputs | ||
- name: Build with Flutter | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run: flutter build apk | ||
- name: Sign APK | ||
id: sign_apk | ||
uses: ilharp/sign-android-release@v1 | ||
with: | ||
releaseDir: build/app/outputs/apk/release | ||
signingKey: ${{ secrets.SIGNING_KEYSTORE }} | ||
keyStorePassword: ${{ secrets.SIGNING_KEYSTORE_PASSWORD }} | ||
keyAlias: ${{ secrets.SIGNING_KEY_ALIAS }} | ||
keyPassword: ${{ secrets.SIGNING_KEY_PASSWORD }} | ||
- name: Setup semantic-release | ||
run: npm ci | ||
- name: Get release version | ||
run: npm exec -- semantic-release --dry-run | ||
id: get-next-version | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Add version to APK | ||
run: mv $SIGNED_FILE_PATH $(dirname $SIGNED_FILE_PATH)/revanced-manager-${{ steps.get-next-version.outputs.new-release-version }}.apk | ||
env: | ||
SIGNED_FILE_PATH: ${{steps.sign_apk.outputs.signedFile}} | ||
- name: Release | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.REPOSITORY_PUSH_ACCESS }} | ||
run: npm exec semantic-release |
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
Oops, something went wrong.