fix(styling): set flex-direction to column when screen in portrait mo… #106
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: Deploy Next Staging | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
paths: | |
- "next-tavla/**" | |
jobs: | |
deploy-staging: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: next-tavla | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install | |
run: yarn install | |
- uses: FirebaseExtended/action-hosting-deploy@v0 | |
with: | |
repoToken: "${{ secrets.GITHUB_TOKEN }}" | |
firebaseServiceAccount: "${{ secrets.FIREBASE_DEPLOY_CREDENTIALS_STAGING }}" | |
projectId: entur-tavla-staging | |
channelId: live | |
entrypoint: ./next-tavla | |
firebaseToolsVersion: 12.1.0 | |
env: | |
FIREBASE_CLI_EXPERIMENTS: webframeworks | |
DATABASE_URL: ${{ secrets.FIREBASE_STAGING_DATABASE_URL }} |