Delete .github directory
Workflows are not useful for Hugo. Hence removing
This commit is contained in:
parent
301efb837f
commit
dd0cc8f02d
2 changed files with 0 additions and 56 deletions
41
.github/workflows/cd.yml
vendored
41
.github/workflows/cd.yml
vendored
|
@ -1,41 +0,0 @@
|
||||||
name: Build and Deploy Hugo Site
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- main
|
|
||||||
pull_request:
|
|
||||||
branches:
|
|
||||||
- main
|
|
||||||
jobs:
|
|
||||||
build-and-deploy-site:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Checkout repo
|
|
||||||
uses: actions/checkout@v2
|
|
||||||
with:
|
|
||||||
submodules: true
|
|
||||||
fetch-depth: 0
|
|
||||||
|
|
||||||
- name: Setup Hugo
|
|
||||||
uses: peaceiris/actions-hugo@v2
|
|
||||||
with:
|
|
||||||
hugo-version: 'latest'
|
|
||||||
extended: true
|
|
||||||
|
|
||||||
- name: Build site with Hugo
|
|
||||||
run: hugo --minify
|
|
||||||
|
|
||||||
- name: Check HTML
|
|
||||||
uses: chabad360/htmlproofer@master
|
|
||||||
with:
|
|
||||||
directory: "./public"
|
|
||||||
arguments: --only-4xx --check-favicon --check-html --assume-extension --empty-alt-ignore --disable-external
|
|
||||||
continue-on-error: true
|
|
||||||
|
|
||||||
- name: Deploy to GitHub Pages
|
|
||||||
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
|
|
||||||
uses: peaceiris/actions-gh-pages@v3
|
|
||||||
with:
|
|
||||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
publish_dir: ./public
|
|
||||||
publish_branch: gh-pages
|
|
15
.github/workflows/release.yml
vendored
15
.github/workflows/release.yml
vendored
|
@ -1,15 +0,0 @@
|
||||||
# Deploy Releases
|
|
||||||
name: Release
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
tags:
|
|
||||||
- "v*"
|
|
||||||
jobs:
|
|
||||||
release:
|
|
||||||
name: Release
|
|
||||||
runs-on: "ubuntu-latest"
|
|
||||||
steps:
|
|
||||||
- uses: "marvinpinto/action-automatic-releases@latest"
|
|
||||||
with:
|
|
||||||
repo_token: "${{ secrets.GITHUB_TOKEN }}"
|
|
||||||
prerelease: false
|
|
Loading…
Reference in a new issue