Skip to content

Made a responsive landing page #17

Made a responsive landing page

Made a responsive landing page #17

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '16'
- name: Navigate to responsive-app directory
run: cd responsive-app
- name: Install dependencies
run: npm install
working-directory: responsive-app
- name: Build
run: npm run build
working-directory: responsive-app
- name: Deploy to GitHub Pages
uses: JamesIves/[email protected]
with:
ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
FOLDER: responsive-app/build