From df89bd4f902caca971699122dc0862c90f164359 Mon Sep 17 00:00:00 2001 From: dd84ai Date: Sun, 14 Jan 2024 20:55:05 +0100 Subject: [PATCH] ci: fix autobuilding --- .github/workflows/build.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f761160..8681f07 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -22,19 +22,22 @@ jobs: - name: Set up Go uses: actions/setup-go@v3 with: - go-version: 1.21 + go-version: 1.21 - name: Install Task run: | sh -c "$(curl --location https://taskfile.dev/install.sh)" -- -d -b /usr/local/bin - + + - name: Install templ + run: go install github.com/a-h/templ/cmd/templ@v0.2.513 + - name: build run: task build - uses: actions/upload-pages-artifact@v1 with: - name: github-pages - path: ./build + name: github-pages + path: ./build - name: Deploy to pages uses: actions/deploy-pages@v1