Skip to content

fix: move country name below city name to better look on small screens #36

fix: move country name below city name to better look on small screens

fix: move country name below city name to better look on small screens #36

Workflow file for this run

name: Build and deploy
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
environment: github-pages
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 'latest'
cache: 'yarn'
- run: yarn install --frozen-lockfile
- name: Build
shell: bash
env:
owm: ${{ secrets.OWM_KEY }}
tg_token: ${{ secrets.TG_TOKEN }}
run: |
export VITE_VERSION="$(date -R -u)"
yarn build
echo $owm > build/key.txt
echo $tg_token >> build/key.txt
- uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: build
force_orphan: true