Skip to content

Commit ab68f23

Browse files
authored
Adds commit hash in the comment (#9)
1 parent 35aa223 commit ab68f23

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ jobs:
1111
steps:
1212
- name: Clone the repository
1313
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f # v2.3.4
14-
# - name: Ensure SHA pinned actions
15-
# uses: zgosalvez/github-actions-ensure-sha-pinned-actions@e70e07ef05f0a3bf1483fde3c50eeab9c1805041 # v1.0.1
14+
- name: Ensure SHA pinned actions
15+
uses: zgosalvez/github-actions-ensure-sha-pinned-actions@e70e07ef05f0a3bf1483fde3c50eeab9c1805041 # v1.0.1
1616

1717
testing:
1818
name: Run ${{ matrix.category }} testing
@@ -97,7 +97,7 @@ jobs:
9797
name: code-coverage
9898
path: coverage
9999
- name: Report code coverage
100-
uses: zgosalvez/github-actions-report-lcov@6c1bcd0451bee80a1ddedf6fbdd62a5d4e740e1b # v1.0.0
100+
uses: zgosalvez/github-actions-report-lcov@dbddb87c1dcd9525e7ebb88700278d58ec7b2f9e # v1.1.0
101101
with:
102102
coverage-files: coverage/lcov.*.info
103103
minimum-coverage: 90

.github/workflows/deployment.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -173,16 +173,16 @@ jobs:
173173
run: |
174174
flutter build apk --obfuscate --split-debug-info=$FLUTTER_DEBUG_INFO_PATH
175175
mv build/app/outputs/flutter-apk/app-release.apk app.apk
176-
mv code/build/app/outputs/mapping/release/mapping.txt apk-mapping.txt
176+
mv build/app/outputs/mapping/release/mapping.txt apk-mapping.txt
177177
working-directory: code
178178

179179
# aab
180180
- name: Build an Android App Bundle file
181181
if: matrix.file == 'aab'
182182
run: |
183183
flutter build appbundle --obfuscate --split-debug-info=$FLUTTER_DEBUG_INFO_PATH
184-
mv code/build/app/outputs/bundle/release/app-release.aab app.aab
185-
mv code/build/app/outputs/mapping/release/mapping.txt aab-mapping.txt
184+
mv build/app/outputs/bundle/release/app-release.aab app.aab
185+
mv build/app/outputs/mapping/release/mapping.txt aab-mapping.txt
186186
working-directory: code
187187

188188
# apk/aab

0 commit comments

Comments
 (0)