From 4d2e2f01e0d24ae7e513c603fbaeccc9079f3a6e Mon Sep 17 00:00:00 2001 From: brooke Date: Sat, 8 Jun 2024 05:44:25 -0400 Subject: [PATCH] remove specific versions --- .forgejo/workflows/build.yaml | 12 +++--------- README.md | 12 ++---------- 2 files changed, 5 insertions(+), 19 deletions(-) diff --git a/.forgejo/workflows/build.yaml b/.forgejo/workflows/build.yaml index 6ad90c4..e517c08 100644 --- a/.forgejo/workflows/build.yaml +++ b/.forgejo/workflows/build.yaml @@ -9,11 +9,6 @@ jobs: build: runs-on: debian-bookworm - strategy: - matrix: - hugo-version: ["0.127.0"] - node-version: ["22.2.0"] - steps: - uses: actions/checkout@v3 @@ -45,8 +40,7 @@ jobs: platforms: linux/amd64 push: true build-args: | - HUGO_VERSION=${{ matrix.hugo-version }} - NODE_VERSION=${{ matrix.node-version }} + HUGO_VERSION="0.127.0" + NODE_VERSION="22.2.0" 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-latest + git.myco.systems/mycosystems/hugo-ci:latest diff --git a/README.md b/README.md index 3072b20..556e15d 100644 --- a/README.md +++ b/README.md @@ -4,23 +4,15 @@ Based on golang:`go version`-alpine Contains nodejs, hugo, npm, rsync -Specific tag versions follow this definition: -extended-`hugo version`-`node vesion`-`go vesion` - -eg. -``` -git.myco.systems/mycosystems/hugo-ci:extended-0.126.3-22-1.22.3 -``` - ## To use Run the following in your hugo directory: ``` -docker run -v .:/home/app -ti --network=host git.myco.systems/mycosystems/hugo-ci:extended-latest +docker run -v .:/home/app -ti --network=host git.myco.systems/mycosystems/hugo-ci:latest ``` To also host locally: ``` -docker run -p 1313:1313 -v .:/home/app -ti --network=host git.myco.systems/mycosystems/hugo-ci:extended-latest +docker run -p 1313:1313 -v .:/home/app -ti --network=host git.myco.systems/mycosystems/hugo-ci:latest ``` ## Links