Skip to content

Redirect subdomain blog.zackad.dev to root domain zackad.dev #120

Redirect subdomain blog.zackad.dev to root domain zackad.dev

Redirect subdomain blog.zackad.dev to root domain zackad.dev #120

Workflow file for this run

name: Build and Deploy to Netlify
on: [push, pull_request]
jobs:
build_and_deploy:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: 'latest'
extended: true
- name: Setup Bun Runtime
uses: antongolub/action-setup-bun@v1
- name: Install dependencies
run: bun install
- name: Build the site
run: bun run build
- name: Deploy to Netlify
uses: nwtgck/[email protected]
with:
publish-dir: public
production-branch: master
github-token: ${{ secrets.GITHUB_TOKEN }}
deploy-message: 'Deploy from GitHub Actions'
enable-pull-request-comment: true
enable-commit-comment: false
overwrites-pull-request-comment: true
env:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
timeout-minutes: 1