This commit is contained in:
parent
1c4573323d
commit
bf95f3bd6d
2 changed files with 39 additions and 1 deletions
38
.forgejo/workflows/deploy-test.yaml
Normal file
38
.forgejo/workflows/deploy-test.yaml
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
name: Hugo
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: hugo-latest
|
||||||
|
steps:
|
||||||
|
- name: Temp fix to update hugo
|
||||||
|
run: wget "https://github.com/gohugoio/hugo/releases/download/v0.126.3/hugo_extended_0.126.3_Linux-64bit.tar.gz" && tar xf "hugo_extended_0.126.3_Linux-64bit.tar.gz" && mv ./hugo /usr/bin/hugo && rm -f hugo_extended_0.126.3_Linux-64bit.tar.gz LICENSE README.md
|
||||||
|
- name: Grab packages
|
||||||
|
run: apt install -y rsync openssh-client
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
submodules: 'true'
|
||||||
|
- name: Run build task
|
||||||
|
run: hugo --minify
|
||||||
|
- name: Test static page
|
||||||
|
run: bash ${{ gitea.workspace }}/bin/test_static_page.sh
|
||||||
|
- name: Deploy to Server
|
||||||
|
uses: https://git.myco.systems/mirrors/ssh-deploy@main
|
||||||
|
env:
|
||||||
|
SSH_PRIVATE_KEY: ${{ secrets.RUNNER_SSH_PRIVATE_KEY }}
|
||||||
|
ARGS: "-rlgoDzvc -i --delete"
|
||||||
|
SOURCE: "public/"
|
||||||
|
REMOTE_HOST: ${{ secrets.REMOTE_HOST }}
|
||||||
|
REMOTE_USER: ${{ secrets.REMOTE_USER }}
|
||||||
|
TARGET: ${{ secrets.REMOTE_TARGET }}
|
||||||
|
# - name: Running Page Speed Insights
|
||||||
|
# uses: https://github.com/JakePartusch/psi-action@v1.3
|
||||||
|
# id: drafting
|
||||||
|
# with:
|
||||||
|
# url: "https://midtowndrafting.com"
|
||||||
|
# threshold: 70
|
||||||
|
# strategy: desktop
|
|
@ -46,7 +46,7 @@ masonryGallery:
|
||||||
- image: "/img/art/45.webp"
|
- image: "/img/art/45.webp"
|
||||||
---
|
---
|
||||||
|
|
||||||
Introducing Ian Gallo, a metal sculpture artist who is rapidly making a name for himself through his unique approach to metalworking. With a reputation in the wedding industry, Ian has collaborated with numerus floral designers to create stunning and unforgettable displays for big name clients.
|
Introducing **Ian Gallo**, a metal sculpture artist who is rapidly making a name for himself through his unique approach to metalworking. With a reputation in the wedding industry, Ian has collaborated with numerus floral designers to create stunning and unforgettable displays for big name clients.
|
||||||
|
|
||||||
Ian's artwork is a celebration of the natural world, as well as the intricate connections between people and their environment. His art draws inspiration from the raw beauty of industrial design, combining rugged materials with intricate detailing to create striking and thought-provoking pieces.
|
Ian's artwork is a celebration of the natural world, as well as the intricate connections between people and their environment. His art draws inspiration from the raw beauty of industrial design, combining rugged materials with intricate detailing to create striking and thought-provoking pieces.
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue