First Commit

This commit is contained in:
2021-05-18 00:58:01 +01:00
parent 75945a93a7
commit a2bd078f6e
96 changed files with 3311 additions and 0 deletions

46
.github/workflows/release.yml vendored Normal file
View File

@@ -0,0 +1,46 @@
name: Build Blog
on:
push:
branches:
- main # Set a branch to deploy
env:
IMAGE_REPO: ghcr.io/hotarublaze
IMAGE_NAME: fluttershub-blog
jobs:
deploy:
runs-on: ubuntu-18.04
# If running with act, Uncomment below
container: phaze9/action-runner
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: '0.83.1'
extended: true
- name: Build
run: hugo --minify --destination build/
- name: Setup Docker
uses: docker/setup-buildx-action@v1
- name: Login to ghcr.io
uses: docker/login-action@v1
with:
registry: ghcr.io
username: HotaruBlaze
password: ${{ secrets.CR_PAT }}
- name: Build and push
id: docker_build
uses: docker/build-push-action@v2
with:
push: true
tags: ${{ env.IMAGE_REPO }}/${{ env.IMAGE_NAME }}:latest