api: v1.16.16 #71
Workflow file for this run
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: Release Events (Self Service) | |
on: | |
release: | |
types: | |
- published | |
defaults: | |
run: | |
working-directory: src/explorer | |
permissions: | |
contents: write | |
id-token: write | |
pull-requests: write | |
concurrency: | |
group: ${{ github.workflow }} | |
cancel-in-progress: true | |
jobs: | |
deploy-prod: | |
name: 🚀 Production deployment | |
if: ${{ startsWith(github.ref, 'refs/tags/explorer') }} | |
runs-on: ubuntu-latest | |
environment: | |
name: prod | |
steps: | |
- name: ⬇️ Set up code | |
uses: actions/checkout@v4 | |
with: | |
show-progress: false | |
- name: ⎔ Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
cache: npm | |
cache-dependency-path: src/explorer/package-lock.json | |
- name: 📥 Download dependencies | |
shell: bash | |
run: npm ci | |
- name: 📨 Forward environment variables | |
shell: bash | |
run: | | |
touch ./.env | |
echo "SELF_SERVICE_URL=${{ vars.SELF_SERVICE_URL }}" >> ./.env | |
- name: 🏗 Run build command | |
shell: bash | |
run: npm run build | |
- name: 🔢 Get firebase version | |
id: cache-settings | |
run: | | |
echo "firebase-tools=$(npm list -s --depth=0 | grep firebase-tools | tail -n 1 | sed 's/.*@//g')" >> GITHUB_OUTPUT | |
- name: 🪣 Cache firebase | |
uses: actions/cache@v4 | |
with: | |
path: ~/.cache/firebase | |
key: ${{ runner.os }}-firebase-${{ steps.cache-settings.outputs.firebase-tools }} | |
- name: 🗝️ Authenticate to Google Cloud | |
id: auth | |
uses: google-github-actions/auth@v2 | |
with: | |
access_token_scopes: "email, openid, https://www.googleapis.com/auth/cloud-platform, https://www.googleapis.com/auth/firebase" | |
workload_identity_provider: ${{ secrets.IDENTITY_PROVIDER }} | |
service_account: ${{ secrets.SERVICE_ACCOUNT_EMAIL }} | |
create_credentials_file: true | |
- name: 🚀 Firebase deploy | |
shell: bash | |
run: npx firebase-tools deploy --project ${{ secrets.PROJECT_ID }} |