Skip to content

Update index.js

Update index.js #10

Workflow file for this run

name: Deploy Weather App
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: '14'
- name: Install dependencies
run: npm install
- name: Build
run: npm run build
- name: Deploy to GitHub Pages
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: ./main
token: ${{ secrets.GITHUB_TOKEN }}
# Use the API key in your build process
- name: Set API key
run: echo "REACT_APP_OPENWEATHERMAPAPI=${{ secrets.OPENWEATHERMAPAPI }}" >> .env.production
- name: Set API key
run: echo "REACT_APP_MAPBOXTOKEN=${{ secrets.MAPBOXTOKEN }}" >> .env.production
# Add any other necessary steps for your deployment