Fixed remove items without edit mode #54
Workflow file for this run
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: create release | |
on: | |
push: | |
tags: | |
- '*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
OUTPUT_PATH: 'launcher/build/outputs/apk/release' | |
MAPPINGS_OUTPUT_PATH: 'launcher/build/outputs/mapping/release' | |
steps: | |
- uses: actions/[email protected] | |
- name: set up jdk | |
uses: actions/[email protected] | |
with: | |
java-version: '17' | |
distribution: 'zulu' | |
- name: decode keystore | |
uses: italankin/android-keystore-decode-action@v1 | |
with: | |
output_dir: 'launcher/' | |
keystore_name: 'release.keystore' | |
properties_name: 'release.properties' | |
encoded_keystore: ${{ secrets.KEYSTORE_BASE64 }} | |
keystore_password: ${{ secrets.KEYSTORE_PASSWORD }} | |
key_alias: ${{ secrets.KEYSTORE_KEY_ALIAS }} | |
key_alias_password: ${{ secrets.KEYSTORE_KEY_ALIAS_PASSWORD }} | |
- name: make gradlew executable | |
run: chmod +x gradlew | |
- name: assemble | |
run: ./gradlew --no-daemon assembleRelease | |
- name: current ref | |
run: echo "CURRENT_REF=${GITHUB_REF#refs/*/}" >> "$GITHUB_ENV" | |
- name: rename apk | |
run: mv "$OUTPUT_PATH/launcher-release.apk" "$OUTPUT_PATH/lnch-${{ env.CURRENT_REF }}.apk" | |
- name: release | |
uses: ncipollo/[email protected] | |
with: | |
artifacts: "${{ env.OUTPUT_PATH }}/*.apk" | |
prerelease: true | |
allowUpdates: true | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: save mapping.txt | |
uses: actions/[email protected] | |
with: | |
name: mapping.txt | |
path: ${{ env.MAPPINGS_OUTPUT_PATH }}/mapping.txt | |