Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
s27288-pj committed Jan 6, 2024
2 parents 3aeea76 + c12e864 commit 5c95e6e
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/static.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
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: build
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

0 comments on commit 5c95e6e

Please sign in to comment.