fix: refresh location every 5 minutes #7
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: web | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Create secrets.json from repository secret | |
run: echo $SECRETS_JSON_BASE64 | base64 -d > assets/secrets.json | |
env: | |
SECRETS_JSON_BASE64: ${{ secrets.SECRETS_JSON_BASE64 }} | |
- name: Install flutter | |
uses: subosito/flutter-action@v1.5.3 | |
with: | |
flutter-version: '2.10.1' | |
- run: flutter config --enable-web | |
- run: flutter pub get | |
- run: flutter pub run build_runner build | |
- run: flutter build web --base-href / | |
- name: Archive Production Artifact | |
uses: actions/upload-artifact@master | |
with: | |
name: web-build | |
path: build/web | |
- name: Download Artifact | |
uses: actions/download-artifact@master | |
with: | |
name: web-build | |
- name: Deploy to Github Pages | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./build/web | |
cname: stops.jeffsieu.com |