Skip to content

Edited READ.md and the assets directory #25

Edited READ.md and the assets directory

Edited READ.md and the assets directory #25

Workflow file for this run

name: CI/CD
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: 16
- name: Install dependencies
run: npm install
- name: Deploy to Heroku
uses: akhileshns/[email protected]
with:
heroku_api_key: ${{ secrets.HEROKU_API_KEY}}
heroku_app_name: ${{ secrets.HEROKU_APP_NAME}}
heroku_email: ${{ secrets.HEROKU_EMAIL}}