Update #15
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: ./ | |
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 |