This repository has been archived by the owner on Aug 19, 2024. It is now read-only.
New application received on DPGA WebApp #1384
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: Automatic Build | |
# on: | |
# workflow_dispatch: | |
# schedule: | |
# - cron: '0 0 * * *' | |
# jobs: | |
# deploy: | |
# runs-on: ubuntu-latest | |
# if: github.ref == 'refs/heads/main' | |
# steps: | |
# - uses: actions/checkout@v2 | |
# - uses: actions/setup-node@v2 | |
# with: | |
# node-version: '16' | |
# - name: Install dependecies | |
# run: npm install | |
# - name: Deploy | |
# env: | |
# GITHUB_TOKEN: ${{ secrets.GITHUBTOKEN}} | |
# NEXT_PUBLIC_MAPBOX_TOKEN: ${{ secrets.NEXT_PUBLIC_MAPBOX_TOKEN }} | |
# NEXT_PUBLIC_SHEET_ID: ${{ secrets.NEXT_PUBLIC_SHEET_ID }} | |
# run: ./scripts/push.bash |