diff --git a/.forgejo/workflows/build.yaml b/.forgejo/workflows/build.yaml index 2a4c535..14dcd40 100644 --- a/.forgejo/workflows/build.yaml +++ b/.forgejo/workflows/build.yaml @@ -4,15 +4,14 @@ branches: [main] jobs: build: runs-on: docker - container: - image: klakegg/hugo env: HUGO_VERSION: 0.115.4 steps: - name: Install Hugo CLI + # run: apt install hugo run: | wget -O ${{ runner.temp }}/hugo.deb https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_linux-amd64.deb \ - && dpkg -i ${{ runner.temp }}/hugo.deb + && sudo dpkg -i ${{ runner.temp }}/hugo.deb # - name: Install Dart Sass # run: sudo snap install dart-sass - uses: actions/checkout@v4