You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We can use github actions secrets and variables to set env variables that will be injected into node's env variables and then consumed with process.env:
name: Deploy to Firebase Hostingenv:
API_KEY: "${{ secrets.API_KEY }}"jobs:
build_and_deploy:
runs-on: ubuntu-lateststeps:
- uses: actions/checkout@v4
- run: npm ci && npm run build
- uses: FirebaseExtended/action-hosting-deploy@v0
To deploy to hosting with https://github.com/FirebaseExtended/action-hosting-deploy
We can use github actions secrets and variables to set env variables that will be injected into node's env variables and then consumed with
process.env
:Would it be possible to support this as well ?
Found this in the repo, it may be the solution :
https://github.com/FirebaseExtended/action-hosting-deploy/blob/120e124148ab7016bec2374e5050f15051255ba2/src/deploy.ts#L98
The text was updated successfully, but these errors were encountered: