Closed thecannabisapp closed 2 years ago
NVM, I think I found a way to do this.
I added a line above the action to install firebase and enabled web framework support.
- name: Install firebase and npm packages
run: install -g firebase-tools && firebase experiments:enable webframeworks
- uses: FirebaseExtended/action-hosting-deploy@v0
...
The use case you're trying to solve
I'm trying to use GitHub actions to deploy my nextjs SSR app to firebase hosting. I understand in order to deploy a SSR app, I need to enable webframeworks with
firebase experiments:enable webframeworks
command.Change to the action that would solve that use case
Is this possible by adding a run: after uses: in the yml file?