diff --git a/.forgejo/workflows/main.yaml b/.forgejo/workflows/main.yaml new file mode 100644 index 0000000..267618b --- /dev/null +++ b/.forgejo/workflows/main.yaml @@ -0,0 +1,19 @@ +on: [push] +env: + HUGO_VERSION: 0.79.0 +jobs: + build: + runs-on: docker + container: + image: docker.io/node:20-alpine + steps: + - run: | + apk add --no-cache wget ca-certificates git + wget -O hugo.tar.gz https://github.com/gohugoio/hugo/releases/download/v${{ env.HUGO_VERSION }}}/hugo_${{ env.HUGO_VERSION }}_Linux-64bit.tar.gz + tar xzf hugo.tar.gz hugo + - uses: actions/checkout@v4 + - run: ./hugo --minify + - uses: actions/upload-artifact@v3 + with: + name: public + path: public/