Skip to content

Commit

Permalink
Actually fix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperDragonXD committed Apr 3, 2024
1 parent 7de7055 commit 138a37a
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/release_update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,6 @@ jobs:
- uses: gradle/actions/setup-gradle@v3
with:
gradle-home-cache-cleanup: true
- name: Build release APK
run: ./gradlew assembleLawnWithQuickstepMarketRelease
- name: Write sign info
id: sign-release-apk
if: github.repository_owner == 'LawnchairLauncher'
Expand All @@ -47,9 +45,10 @@ jobs:
echo storeFile='${{ github.workspace }}/key.jks' >> keystore.properties
echo ${{ secrets.KEYSTORE }} | base64 --decode > ${{ github.workspace }}/key.jks
fi
- name: Build release APK
run: ./gradlew assembleLawnWithQuickstepMarketRelease
- name: Rename artifact
continue-on-error: true
run: mv "${{ steps.sign-release-apk.outputs.signedReleaseFile }}" "${{ github.event.inputs.artifactName }}"
run: mv build/outputs/apk/**/*.apk "${{ github.event.inputs.artifactName }}"
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit 138a37a

Please sign in to comment.