Skip to content

Commit 34c2918

Browse files
committed
remove working dir
1 parent 6f18b9f commit 34c2918

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ jobs:
4747
keystore-password: "${{ secrets.ANDROID_RELEASE_KEY_PASSWORD }}"
4848
# optionals
4949
build-cmd: flutter build apk --release --flavor dev
50-
working-directory: ./
5150

5251

5352
- name: Archive APK

action.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
name: flutter-build-android
22
description: Builds an apk or appbundle
33
inputs:
4-
working-directory:
5-
description: The root directory of the flutter app within this repository
6-
default: ./
74
build-cmd:
85
description: The full build command, can be used to add arguments
96
default: flutter build apk --release
@@ -66,9 +63,8 @@ runs:
6663
env:
6764
KEYSTORE: ${{ inputs.keystore-base64 }}
6865
KEYSTORE_PASSWORD: ${{ inputs.keystore-password }}
69-
working-directory: ${{ inputs.working-directory }}/android
66+
working-directory: ./android
7067

7168
- name: Build
7269
run: ${{ inputs.build-cmd }}
7370
shell: bash
74-
working-directory: ${{ inputs.working-directory }}

0 commit comments

Comments
 (0)