From 9dd2af49af9c9ab00c41916dda0b58b4a9aff66c Mon Sep 17 00:00:00 2001 From: Alexilator Date: Mon, 19 Aug 2024 15:58:04 +0200 Subject: [PATCH] test --- .github/workflows/build.yml | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index dcd693a..f6c9308 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -4,27 +4,24 @@ on: push: branches: - main - pull_request: - branches: - - main jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - uses: actions/setup-go@v5 - with: - go-version: '^1.22.5' + # - uses: actions/setup-go@v5 + # with: + # go-version: '^1.22.5' - name: Login to GitHub Container Registry uses: docker/login-action@v3 with: registry: git.wittern.io username: ${{ github.actor }} password: ${{ secrets.DOCKER_PASSWORD }} - - name: Build the Docker image - run: | - go install github.com/a-h/templ/cmd/templ@latest - templ generate - docker build . --file Dockerfile --tag git.wittern.io/public/echo-todos - docker push git.wittern.io/public/echo-todos + # - name: Build the Docker image + # run: | + # go install github.com/a-h/templ/cmd/templ@latest + # templ generate + # docker build . --file Dockerfile --tag git.wittern.io/public/echo-todos + # docker push git.wittern.io/public/echo-todos