Skip to content

Commit

Permalink
Fix release notes export name (#6210)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
daymxn authored Aug 23, 2024
1 parent 0672a3c commit fd01196
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-release-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,19 +29,19 @@ jobs:
uses: actions/[email protected]
with:
name: m2repository
path: build/m2repository.zip
path: build/m2repository/
retention-days: 15

- name: Upload release notes
uses: actions/[email protected]
with:
name: release_artifacts
path: build/release-notes.zip
name: release_notes
path: build/release-notes/
retention-days: 15

- name: Upload kotlindocs
uses: actions/[email protected]
with:
name: kotlindocs
path: build/kotlindoc.zip
path: build/firebase-kotlindoc/
retention-days: 15

0 comments on commit fd01196

Please sign in to comment.