Compare commits
10 Commits
0d0eb57486
...
d47d5c8439
| Author | SHA1 | Date | |
|---|---|---|---|
| d47d5c8439 | |||
| ccaf58808f | |||
| d067ea0517 | |||
| d9efc2078c | |||
| 9af235e21e | |||
| 74ebd07231 | |||
| 2669bb2297 | |||
| 4ba6ffad21 | |||
| e1e011bd15 | |||
| bc8820c085 |
33
.gitea/workflows/deploy.yml
Normal file
33
.gitea/workflows/deploy.yml
Normal 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 }}
|
||||
Reference in New Issue
Block a user