diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index aa32838..5bddcff 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -33,6 +33,6 @@ jobs: context: . platforms: linux/amd64,linux/arm64,linux/arm/v7 push: false - tags: virtualzone/compose-updater:${{ github.sha }} + tags: carcinoma/compose-updater:${{ github.sha }} cache-from: type=local,src=/tmp/.buildx-cache cache-to: type=local,dest=/tmp/.buildx-cache-new \ No newline at end of file diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 979d42a..e49ec58 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -46,9 +46,9 @@ jobs: - name: Docker Hub Description uses: peter-evans/dockerhub-description@v2 with: - username: virtualzone + username: carcinoma password: ${{ secrets.CI_REGISTRY_PASSWORD }} - repository: virtualzone/compose-updater + repository: carcinoma/compose-updater readme-filepath: ./README.md - name: Create Release uses: actions/create-release@v1 diff --git a/src/updater.go b/src/updater.go index 0cd2d31..c79d678 100644 --- a/src/updater.go +++ b/src/updater.go @@ -80,7 +80,7 @@ func (u *Updater) createComposeFileContainerMapping() []*ComposeFile { var err error composeFile, err = ParseComposeYaml(container.ComposeFile) if err != nil { - log.Fatalf("Could not parse compose YAML: %s\n", err) + log.Fatalf("Could not parse compose YAML [%s]: %s\n", container.ComposeFile, err) } cache[container.ComposeFile] = composeFile } diff --git a/src/version.go b/src/version.go index e95764e..5e0db33 100644 --- a/src/version.go +++ b/src/version.go @@ -1,4 +1,4 @@ package main // BuildVersion is the version -const BuildVersion = "2.4.0" +const BuildVersion = "2.4.1-test"