Skip to content

ci: update path format #14

ci: update path format

ci: update path format #14

Workflow file for this run

name: Push Events
on:
push:
branches:
- dev
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
release-please:
name: Create release
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
if: github.ref_name == 'main'
steps:
- name: 🚀 Create Release
id: release-please
uses: agrc/release-composite-action@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
github-app-id: ${{ secrets.UGRC_RELEASE_BOT_APP_ID }}
github-app-key: ${{ secrets.UGRC_RELEASE_BOT_APP_KEY }}
github-app-name: ${{ secrets.UGRC_RELEASE_BOT_NAME }}
github-app-email: ${{ secrets.UGRC_RELEASE_BOT_EMAIL }}
deploy-ui-dev:
name: Deploy UI to staging
runs-on: ubuntu-latest
permissions:
id-token: write
environment:
name: dev
url: https://ut-dts-agrc-moonwalk-dev.web.app/
steps:
- name: 🚀 Deploy
uses: agrc/firebase-website-deploy-composite-action@v1
with:
identity-provider: ${{ secrets.IDENTITY_PROVIDER }}
service-account-email: ${{ secrets.SERVICE_ACCOUNT_EMAIL }}
project-id: ${{ secrets.PROJECT_ID }}
build-command: npm run build -- --mode dev
env:
VITE_FIREBASE_CONFIG: ${{ secrets.FIREBASE_CONFIG }}