Skip to content

Commit

Permalink
issue #77: uncomment gh-pages deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
vivalareda committed Dec 14, 2023
1 parent 3db6bc3 commit 2583bf0
Showing 1 changed file with 44 additions and 44 deletions.
88 changes: 44 additions & 44 deletions .github/workflows/gh-pages-deployment.yml
Original file line number Diff line number Diff line change
@@ -1,44 +1,44 @@
# name: Build and Deploy to GitHub Pages

# on:
# push:
# pull_request:

# jobs:
# build-and-deploy:
# runs-on: ubuntu-latest
# env:
# NODE_VERSION: 18
# PUBLISH_DIR: ./build

# steps:
# - name: Checkout Repository
# uses: actions/checkout@v3

# - uses: actions/setup-node@v3
# with:
# node-version: ${{ env.NODE_VERSION }}

# - name: Install Dependencies
# run: npm install

# - name: Add subdomain
# uses: richardrigutins/replace-in-files@v2
# with:
# files: 'package.json'
# search-text: '"homepage": "/",'
# replacement-text: '"homepage": "https://ai-cfia.github.io/nachet-frontend",'

# - name: Print package.json
# run: cat package.json

# - name: Build
# run: npm run build
# env:
# REACT_APP_BACKEND_URL: ${{ secrets.REACT_APP_BACKEND_URL }}

# - name: Deploy to GitHub Pages
# uses: peaceiris/actions-gh-pages@v3
# with:
# github_token: ${{ secrets.GITHUB_TOKEN }}
# publish_dir: ${{ env.PUBLISH_DIR }}
name: Build and Deploy to GitHub Pages

on:
push:
pull_request:

jobs:
build-and-deploy:
runs-on: ubuntu-latest
env:
NODE_VERSION: 18
PUBLISH_DIR: ./build

steps:
- name: Checkout Repository
uses: actions/checkout@v3

- uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}

- name: Install Dependencies
run: npm install

- name: Add subdomain
uses: richardrigutins/replace-in-files@v2
with:
files: 'package.json'
search-text: '"homepage": "/",'
replacement-text: '"homepage": "https://ai-cfia.github.io/nachet-frontend",'

- name: Print package.json
run: cat package.json

- name: Build
run: npm run build
env:
REACT_APP_BACKEND_URL: ${{ secrets.REACT_APP_BACKEND_URL }}

- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ${{ env.PUBLISH_DIR }}

0 comments on commit 2583bf0

Please sign in to comment.