Skip to content

Add step to create .env file with GIPHY_KEY in deployment workflow #4

Add step to create .env file with GIPHY_KEY in deployment workflow

Add step to create .env file with GIPHY_KEY in deployment workflow #4

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '20'
- name: Create .env file
run: echo "REACT_APP_GIPHY_KEY=${{ secrets.GIPHY_KEY }}" > .env
- name: Install dependencies
run: yarn
- name: Build project
run: yarn build
- name: Copy index.html to 404.html
run: cp build/index.html build/404.html
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./build
cname: chat.angor.io