Skip to content

Commit

Permalink
Update CI
Browse files Browse the repository at this point in the history
  • Loading branch information
validcube committed Dec 21, 2023
1 parent b58522c commit 037d974
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
- name: Build debug APK
run: ./gradlew assembleLawnWithQuickstepDebug
- name: Upload artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Debug APK
path: build/outputs/apk/lawnWithQuickstep/debug/*.apk
Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:
python -m pip install --upgrade pip
pip install gitpython requests
- name: Download artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: Debug APK
path: artifacts/debug-apk
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/crowdin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
upload_translations: false
upload_sources: true
download_translations: true
localization_branch_name: 12.1-dev-localization
localization_branch_name: 13-dev-localization
create_pull_request: true
base_url: 'https://lawnchair.crowdin.com'
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/crowdin_download.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
upload_translations: false
upload_sources: false
download_translations: true
localization_branch_name: 12.1-dev-localization
localization_branch_name: 13-dev-localization
create_pull_request: true
base_url: 'https://lawnchair.crowdin.com'
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/crowdin_upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
upload_translations: false
upload_sources: true
download_translations: false
localization_branch_name: 12.1-dev-localization
localization_branch_name: 13-dev-localization
create_pull_request: false
base_url: 'https://lawnchair.crowdin.com'
env:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release_update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,15 +63,15 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Download artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: Release APK
path: artifacts/release-apk
- name: Publish GitHub release
uses: softprops/action-gh-release@v1
with:
tag_name: ${{ github.event.inputs.tagName }}
prerelease: ${{ github.events.inputs.prerelease }}
prerelease: ${{ github.event.inputs.prerelease }}
draft: true
body_path: ${{ github.workspace }}/GITHUB_CHANGELOG.md
files: artifacts/release-apk/${{ github.event.inputs.artifactName }}
Expand All @@ -83,7 +83,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Download artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: Release APK
path: artifacts/release-apk
Expand Down

0 comments on commit 037d974

Please sign in to comment.