Skip to content

Commit fd01196

Browse files
authored
Fix release notes export name (#6210)
Per [b/361778952](https://b.corp.google.com/issues/361778952), This renames the exported release notes in the build artifact workflow to be `release_notes` instead of `release_artifacts`. It seems my previous commit to do this didn't make it in before the branch was merged. This PR also fixes the following: - [b/361781459](https://b.corp.google.com/issues/361781459) -> Fix build artifact double zipping
1 parent 0672a3c commit fd01196

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,19 +29,19 @@ jobs:
2929
uses: actions/[email protected]
3030
with:
3131
name: m2repository
32-
path: build/m2repository.zip
32+
path: build/m2repository/
3333
retention-days: 15
3434

3535
- name: Upload release notes
3636
uses: actions/[email protected]
3737
with:
38-
name: release_artifacts
39-
path: build/release-notes.zip
38+
name: release_notes
39+
path: build/release-notes/
4040
retention-days: 15
4141

4242
- name: Upload kotlindocs
4343
uses: actions/[email protected]
4444
with:
4545
name: kotlindocs
46-
path: build/kotlindoc.zip
46+
path: build/firebase-kotlindoc/
4747
retention-days: 15

0 commit comments

Comments
 (0)