m139 release #165
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Release Artifacts | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- 'releases/**' | |
jobs: | |
build-artifacts: | |
# TODO(b/271315039) - Revert back to ubuntu when fixed | |
runs-on: macos-latest | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- uses: actions/[email protected] | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: 11 | |
distribution: temurin | |
cache: gradle | |
- name: Perform gradle build | |
run: | | |
./gradlew firebasePublish | |
- name: Upload generated artifacts | |
uses: actions/upload-artifact@v2 | |
with: | |
name: release_artifacts | |
path: build/*.zip | |
retention-days: 15 |