Skip to content

Commit 2f5b338

Browse files
authored
Export release artifacts as individuals (#6201)
Per [b/359896460](https://b.corp.google.com/issues/359896460), This updates the `build-release-artifacts` workflow to export our release artifacts as separate zip files instead of one. This will allow us to consume the individual artifacts easier, as a github artifact is created for each.
1 parent 7c58f5b commit 2f5b338

File tree

1 file changed

+16
-2
lines changed

1 file changed

+16
-2
lines changed

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

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,23 @@ jobs:
2525
run: |
2626
./gradlew firebasePublish
2727
28-
- name: Upload generated artifacts
28+
- name: Upload m2 repo
29+
uses: actions/upload-artifact@v4.3.3
30+
with:
31+
name: m2repository
32+
path: build/m2repository.zip
33+
retention-days: 15
34+
35+
- name: Upload release notes
2936
uses: actions/upload-artifact@v4.3.3
3037
with:
3138
name: release_artifacts
32-
path: build/*.zip
39+
path: build/release-notes.zip
40+
retention-days: 15
41+
42+
- name: Upload kotlindocs
43+
uses: actions/upload-artifact@v4.3.3
44+
with:
45+
name: kotlindocs
46+
path: build/kotlindoc.zip
3347
retention-days: 15

0 commit comments

Comments
 (0)