check if the issue is the ipv4-only network, remove redundant go version matrix
Some checks failed
Build And Publish Docker / build (0.127.0, 22) (push) Failing after 2m5s

This commit is contained in:
brooke 2024-06-08 03:13:00 -04:00
parent 46fef50cda
commit 03016e3b7f
2 changed files with 1 additions and 2 deletions

View file

@ -47,7 +47,6 @@ jobs:
build-args: | build-args: |
HUGO_VERSION=${{ matrix.hugo-version }} HUGO_VERSION=${{ matrix.hugo-version }}
NODE_VERSION=${{ matrix.node-version }} NODE_VERSION=${{ matrix.node-version }}
GO_VERSION=${{ matrix.go-version }}
tags: | tags: |
git.myco.systems/mycosystems/hugo-ci:extended-alpine-${{ matrix.hugo-version }}-${{ matrix.node-version }}-${{ matrix.go-version }} git.myco.systems/mycosystems/hugo-ci:extended-alpine-${{ matrix.hugo-version }}-${{ matrix.node-version }}-${{ matrix.go-version }}
git.myco.systems/mycosystems/hugo-ci:extended-alpine-latest git.myco.systems/mycosystems/hugo-ci:extended-alpine-latest

View file

@ -11,7 +11,7 @@ RUN curl -sL -o hugo_extended_${HUGO_VERSION}_linux-amd64.tar.gz https://github.
cp ./hugo /usr/bin/hugo && \ cp ./hugo /usr/bin/hugo && \
hugo version hugo version
RUN curl -sL -o node-v${NODE_VERSION}.tar.gz https://nodejs.org/dist/v${NODE_VERSION}/node-v${NODE_VERSION}.tar.gz && \ RUN wget -o node-v${NODE_VERSION}.tar.gz https://nodejs.org/dist/v${NODE_VERSION}/node-v${NODE_VERSION}.tar.gz && \
tar -xvzf "node-v${NODE_VERSION}.tar.gz" && \ tar -xvzf "node-v${NODE_VERSION}.tar.gz" && \
cd node-v${NODE_VERSION} && \ cd node-v${NODE_VERSION} && \
./configure --prefix=/usr \ ./configure --prefix=/usr \