Skip to content

✨ Add more links to photogallery #37

✨ Add more links to photogallery

✨ Add more links to photogallery #37

name: deploy-production
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- run: yarn install
- run: yarn build
- run: yarn lint
- run: yarn format:check
- run: yarn test
deploy:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: akhileshns/[email protected]
with:
heroku_api_key: ${{secrets.HEROKU_API_KEY}}
heroku_app_name: tcup-2024
heroku_email: ${{secrets.HEROKU_EMAIL}}