Skip to content

Commit

Permalink
add hugo
Browse files Browse the repository at this point in the history
  • Loading branch information
xanhacks committed Feb 6, 2024
1 parent bd02986 commit d91e742
Showing 1 changed file with 52 additions and 20 deletions.
72 changes: 52 additions & 20 deletions .github/workflows/hugo.yml
Original file line number Diff line number Diff line change
@@ -1,39 +1,71 @@
name: Hyas CI
name: Deploy Hugo site to Pages

on:
push:
branches: main
branches: ["main"]
workflow_dispatch:

env:
WEBSITE_URL: https://www.offensiveweb.com

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write

concurrency:
group: "pages"
cancel-in-progress: false

defaults:
run:
shell: bash

jobs:
build:
runs-on: ubuntu-latest
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}

env:
HUGO_VERSION: 0.122.0
steps:
- name: Checkout project
uses: actions/checkout@v3
- name: Install Hugo CLI
run: |
wget -O ${{ runner.temp }}/hugo.deb https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_linux-amd64.deb \
&& sudo dpkg -i ${{ runner.temp }}/hugo.deb
- name: Setup Node.js 20.x
uses: actions/setup-node@v3
with:
node-version: 20.x
- name: Checkout
uses: actions/checkout@v3

- name: Install dependencies
run: npm ci
- name: Setup Pages
id: pages
uses: actions/configure-pages@v3

- name: Build production website
run: npm run build
- name: Setup [email protected]
uses: actions/setup-node@v3
with:
node-version: 21.x

- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public
- name: Install Node.js dependencies
run: "npm ci"

- name: Build with Hugo
env:
HUGO_ENVIRONMENT: production
HUGO_ENV: production
run: "npm run build"

- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
path: ./public

deploy:
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ env.WEBSITE_URL }}
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v3

0 comments on commit d91e742

Please sign in to comment.