Compare commits

...

10 Commits

Author SHA1 Message Date
d47d5c8439 Merge pull request 'Add Workflow' (#1) from deploy into main
All checks were successful
Building & Deploying Website / Deploy-Website (push) Successful in 17s
Reviewed-on: #1
2025-11-05 21:49:04 +01:00
ccaf58808f Fix typo
All checks were successful
Building & Deploying Website / Deploy-Website (push) Successful in 20s
2025-11-05 21:48:33 +01:00
d067ea0517 Fix Meli site
All checks were successful
Building & Deploying Website / Deploy-Website (push) Successful in 15s
2025-11-05 21:43:45 +01:00
d9efc2078c Switch deploy to meli
Some checks failed
Building & Deploying Website / Deploy-Website (push) Failing after 21s
2025-11-05 21:41:42 +01:00
9af235e21e Modify publish command
Some checks failed
Building & Deploying Website / Deploy-Website (push) Failing after 22s
2025-11-05 20:30:24 +01:00
74ebd07231 Modify publish
Some checks failed
Building & Deploying Website / Deploy-Website (push) Failing after 18s
2025-11-05 20:25:17 +01:00
2669bb2297 Add publish step
Some checks failed
Building & Deploying Website / Deploy-Website (push) Failing after 20s
2025-11-05 20:23:09 +01:00
4ba6ffad21 Checkout submodules
All checks were successful
Building & Deploying Website / Deploy-Website (push) Successful in 10s
2025-11-05 20:19:39 +01:00
e1e011bd15 Install hugo action
Some checks failed
Building & Deploying Website / Deploy-Website (push) Failing after 7s
2025-11-05 20:18:10 +01:00
bc8820c085 Add workflow
Some checks failed
Building & Deploying Website / Deploy-Website (push) Failing after 30s
2025-11-05 19:58:02 +01:00

View File

@@ -0,0 +1,33 @@
name: Building & Deploying Website
on: [push]
env:
MELI_SITE: "4a03bf6e-193f-4626-bbeb-a1407422d0bc"
jobs:
Deploy-Website:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
with:
submodules: true
- name: Setup Hugo
uses: peaceiris/actions-hugo@v3
with:
hugo-version: '0.152.2'
# extended: true
- name: Build
run: hugo --minify
- name: "Publish"
run: |
npx -p "@getmeli/cli" meli upload ./public \
--url "https://pages.hogertz.eu" \
--site "$MELI_SITE" \
--token "$MELI_TOKEN" \
--release "$GITHUB_SHA"
env:
MELI_TOKEN: ${{ secrets.MELI_TOKEN }}
GITEA_TOKEN: ${{ secrets.GITEA_TOKEN }}