Skip to content

Commit

Permalink
add log information
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian Anke committed Feb 1, 2024
1 parent b235189 commit 33ab304
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/updater.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down
2 changes: 1 addition & 1 deletion src/version.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package main

// BuildVersion is the version
const BuildVersion = "2.4.0"
const BuildVersion = "2.4.1-test"

0 comments on commit 33ab304

Please sign in to comment.