Compare commits

...

9 Commits

Author SHA1 Message Date
simon987
54ab64171c Update URL 2024-02-05 19:23:05 -05:00
simon987
58f27cc21d Update tags 2024-02-05 19:20:05 -05:00
simon987
0b222dae32 cleanup 2024-02-05 19:16:06 -05:00
simon987
9dbe4db001 cleanup 2024-02-05 19:13:32 -05:00
simon987
5ba15cd9a6 CI fix attempt 2024-02-05 19:09:04 -05:00
simon987
b619d5532d CI fix attempt 2024-02-05 19:04:16 -05:00
simon987
681de12c63 CI fix attempt 2024-02-05 18:56:46 -05:00
simon987
ee59c694f9 CI fix attempt 2024-02-05 18:55:03 -05:00
simon987
bdaaa79e56 Use github for CI 2024-02-05 18:49:59 -05:00
7 changed files with 63 additions and 68 deletions

View File

@ -1,3 +0,0 @@
.git
Dockerfile
.dockerignore

View File

@ -1,22 +0,0 @@
kind: pipeline
type: docker
platform:
os: linux
steps:
- name: submodules
image: alpine/git
commands:
- git submodule update --init --recursive
- name: build image
image: plugins/docker
settings:
username:
from_secret: DOCKER_USERNAME
password:
from_secret: DOCKER_PASSWORD
repo: simon987/recipes.simon987.net
context: ./
dockerfile: ./Dockerfile
tags: latest

61
.github/workflows/hugo.yml vendored Normal file
View File

@ -0,0 +1,61 @@
name: Deploy
on:
push:
branches:
- main
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: true
defaults:
run:
shell: bash
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Install Hugo CLI
run: |
wget -O ${{ runner.temp }}/hugo.deb https://github.com/gohugoio/hugo/releases/download/v0.92.0/hugo_extended_0.92.0_Linux-64bit.deb \
&& sudo dpkg -i ${{ runner.temp }}/hugo.deb
- name: Checkout
uses: actions/checkout@v4
with:
submodules: true
fetch-depth: 0
- name: Setup Pages
id: pages
uses: actions/configure-pages@v4
- name: Build with Hugo
env:
HUGO_ENVIRONMENT: production
HUGO_ENV: production
run: |
hugo \
--gc \
--minify \
--baseURL "${{ steps.pages.outputs.base_url }}/"
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
path: ./public
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v3

View File

@ -1,11 +0,0 @@
FROM jojomi/hugo:0.85.0 as build
WORKDIR /site
COPY . .
RUN hugo --minify -b https://recipes.simon987.net
FROM nginx:1.20.1-alpine
COPY nginx.conf /etc/nginx/nginx.conf
COPY --from=build /site/public/ /www/

View File

@ -25,4 +25,4 @@ params:
Content: Mobile-friendly aggregation of recipes I regularly make and enjoy.
socialIcons:
- name: github
url: "https://github.com/simon987/recipes.simon987.net"
url: "https://github.com/simon987/recipes"

View File

@ -2,7 +2,7 @@
title: "Crispy Tofu Bits"
date: 2024-02-03T12:46:21-05:00
draft: false
tags: ["dinner"]
tags: ["dinner", "tofu", "rice"]
cover:
image: "images/image.webp"
---

View File

@ -1,30 +0,0 @@
user nginx;
worker_processes auto;
error_log /dev/stderr warn;
events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /dev/stdout main;
sendfile on;
keepalive_timeout 5;
server {
listen 80 default_server;
location / {
root /www/;
}
}
}