diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 6101cc2..ca6072c 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -106,12 +106,12 @@ jobs: - name: Publish Images run: | for tag in \ - ${{ steps.prepare.outputs.version }} \ - $( echo "${{ steps.prepare.outputs.version }}" | cut -d. -f1-2 ) \ - $( echo "${{ steps.prepare.outputs.version }}" | cut -d. -f1 ) \ + v${{ steps.prepare.outputs.version }} \ + v$( echo "${{ steps.prepare.outputs.version }}" | cut -d. -f1-2 ) \ + v$( echo "${{ steps.prepare.outputs.version }}" | cut -d. -f1 ) \ latest \ ; do - fqimagetag="${{ steps.prepare.outputs.image }}:v$tag" + fqimagetag="${{ steps.prepare.outputs.image }}:$tag" docker tag image $fqimagetag docker push $fqimagetag done diff --git a/README.md b/README.md index ee48320..e4b7a35 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ brew install dpb587/tap/gget The `gget` image can be used as a build stage to download assets for a later stage. ```dockerfile -FROM dpb587/gget as gget +FROM ghcr.io/dpb587/gget/gget as gget RUN gget --executable github.com/cloudfoundry/bosh-cli --ref-version=5.x bosh=bosh-cli-*-linux-amd64 RUN gget --executable github.com/cloudfoundry/bosh-bootloader bbl=bbl-*_linux_x86-64 RUN gget --stdout github.com/pivotal-cf/om om-linux-*.tar.gz | tar -xzf- om diff --git a/docs/releases/v0.6.1.md b/docs/releases/v0.6.1.md new file mode 100644 index 0000000..1ccd774 --- /dev/null +++ b/docs/releases/v0.6.1.md @@ -0,0 +1,6 @@ +--- +title: v0.6.1 +weight: 6001 +--- + +* fix automated Docker build tagging diff --git a/website/pages/index.vue b/website/pages/index.vue index 19d850e..b46cdda 100644 --- a/website/pages/index.vue +++ b/website/pages/index.vue @@ -428,7 +428,7 @@ fi

A gget Docker image is available and easily integrates as a build stage for downloads. It includes tools for decompressing archives, and the default working directory is /result for access in later stages.

-
FROM dpb587/gget as gget
+          
FROM ghcr.io/dpb587/gget/gget as gget
 RUN gget github.com/cloudfoundry/bosh-cli --ref-version=5.x \
       --executable bosh=bosh-cli-*-linux-amd64
 RUN gget github.com/cloudfoundry/bosh-bootloader \