mirror of
https://github.com/revanced/revanced-manager.git
synced 2025-04-29 21:44:26 +02:00
ci: Cover before build failure and registry authentication
This commit is contained in:
parent
89ad88c0ef
commit
5c58f624de
24
.github/workflows/build_pull_request.yml
vendored
24
.github/workflows/build_pull_request.yml
vendored
@ -66,20 +66,26 @@ jobs:
|
||||
flutter-version: ${{ inputs.flutter-version }}
|
||||
|
||||
- name: Get dependencies
|
||||
continue-on-error: true
|
||||
run: flutter pub get
|
||||
|
||||
- name: Generate translations
|
||||
continue-on-error: true
|
||||
run: dart run slang
|
||||
|
||||
- name: Generate code files
|
||||
continue-on-error: true
|
||||
run: dart run build_runner build --delete-conflicting-outputs
|
||||
|
||||
- name: Build
|
||||
continue-on-error: true
|
||||
id: flutter-build
|
||||
run: flutter build apk --${{ inputs.app-flavor }}
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- name: Prepare comment
|
||||
id: prepare-comment # Added ID for accessing outputs
|
||||
run: |
|
||||
COMMIT_HASH=$(git rev-parse --short HEAD)
|
||||
if [[ "${{ steps.flutter-build.outcome }}" == "success" ]]; then
|
||||
@ -105,10 +111,22 @@ jobs:
|
||||
|
||||
Details: [_execution **${{ github.run_id }}** / attempt **${{ github.run_attempt }}**_](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }})!
|
||||
|
||||
### ⚙️ Workflow run configuration
|
||||
### ⚙️ Workflow Steps
|
||||
|
||||
- App flavor: ${{ inputs.app-flavor }}
|
||||
- Flutter version: ${{ inputs.flutter-version }} (${{ inputs.flutter-channel }})
|
||||
| Step | Status |
|
||||
| ------------------------- | :------------------------------------------------------- |
|
||||
| **Get dependencies** | ${{ steps.get-dependencies.outcome || job.status }} |
|
||||
| **Generate translations** | ${{ steps.generate-translations.outcome || job.status }} |
|
||||
| **Generate code files** | ${{ steps.generate-code-files.outcome || job.status }} |
|
||||
| **Build** | ${{ steps.flutter-build.outcome }} |
|
||||
|
||||
### ⚙️ Workflow Configuration
|
||||
|
||||
| Parameter | Value |
|
||||
| :--------------- | :--------------------------------------- |
|
||||
| App flavor | ${{ inputs.app-flavor }} |
|
||||
| Flutter version | ${{ inputs.flutter-version }} |
|
||||
| Flutter channel | ${{ inputs.flutter-channel }} |
|
||||
|
||||
- name: Upload Artifact
|
||||
if: steps.flutter-build.outcome == 'success'
|
||||
|
Loading…
x
Reference in New Issue
Block a user