Skip to content

Commit

Permalink
Update and rename gh-pages.yml to deploy.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jlpereira authored Oct 15, 2024
1 parent 9bda346 commit 04e6339
Showing 1 changed file with 28 additions and 15 deletions.
43 changes: 28 additions & 15 deletions .github/workflows/gh-pages.yml → .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,22 @@
name: public-build
name: Deploy to GitHub Pages

on:
push:
branches: [main, setup]
branches:
- main
- setup
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
ref: 'main'
fetch-depth: 0
- uses: actions/checkout@v2

- uses: actions/checkout@v4
with:
ref: 'setup'
fetch-depth: 0
Expand All @@ -25,32 +26,44 @@ jobs:
run: cp -r _setup/* .

- name: Setup Node.js
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: '16'

- name: Cache dependencies
uses: actions/cache@v2
uses: actions/cache@v4
id: npm-cache
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install dependencies
run: npm ci

- name: Build public view
run: npm run build

- name: Deploy to GitHub Pages
uses: crazy-max/ghaction-github-pages@v2
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
target_branch: gh-pages
build_dir: dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
path: ./dist

deploy:
needs: build
permissions:
pages: write
id-token: write

environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4

permissions:
contents: write

0 comments on commit 04e6339

Please sign in to comment.