Skip to content

Commit d000410

Browse files
committed
[Plugin] Fix build release artifacts workflow (#7693)
Downloading the dackka binary should happen **before** gradle is run to build the artifacts, otherwise it doesn't find it and fails.
1 parent 7f0ec56 commit d000410

4 files changed

Lines changed: 13 additions & 10 deletions

File tree

.github/workflows/build-release-artifacts.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,16 @@ jobs:
2121
distribution: temurin
2222
cache: gradle
2323

24+
- uses: google-github-actions/auth@71f986410dfbc7added4569d411d040a91dc6935 # v2.1.8
25+
with:
26+
credentials_json: ${{ secrets.GCP_SERVICE_ACCOUNT }}
27+
28+
- uses: google-github-actions/setup-gcloud@77e7a554d41e2ee56fc945c52dfd3f33d12def9a # v2.1.4
29+
30+
- name: Download Dackka
31+
run: |
32+
gcloud storage cp gs://android-ci/mvn/com/google/devsite/dackka-fat/1.2.0/dackka-fat-1.2.0.jar ./
33+
2434
- name: Perform gradle build
2535
run: |
2636
./gradlew firebasePublish
@@ -32,16 +42,6 @@ jobs:
3242
path: build/m2repository/
3343
retention-days: 15
3444

35-
- uses: google-github-actions/auth@71f986410dfbc7added4569d411d040a91dc6935 # v2.1.8
36-
with:
37-
credentials_json: ${{ secrets.GCP_SERVICE_ACCOUNT }}
38-
39-
- uses: google-github-actions/setup-gcloud@77e7a554d41e2ee56fc945c52dfd3f33d12def9a # v2.1.4
40-
41-
- name: Download Dackka
42-
run: |
43-
gcloud storage cp gs://android-ci/mvn/com/google/devsite/dackka-fat/1.2.0/dackka-fat-1.2.0.jar ./
44-
4545
- name: Upload release notes
4646
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
4747
with:

appcheck/firebase-appcheck-debug-testing/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,3 +82,4 @@
8282
# 16.0.0-beta01
8383

8484
- [feature] Initial beta release of the [app_check] Debug Testing SDK with abuse reduction features.
85+

appcheck/firebase-appcheck-debug/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,3 +87,4 @@
8787
# 16.0.0-beta01
8888

8989
- [feature] Initial beta release of the [app_check] Debug SDK with abuse reduction features.
90+

appcheck/firebase-appcheck-playintegrity/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,3 +58,4 @@
5858

5959
- [feature] Added support for [Play Integrity](https://developer.android.com/google/play/integrity)
6060
as an attestation provider.
61+

0 commit comments

Comments
 (0)