Skip to content

Commit

Permalink
Update yml files
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelGoerentz committed Aug 15, 2024
1 parent ef2ce3b commit 119a80d
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,3 +62,9 @@ jobs:
no-cache: true
platforms: linux/amd64,linux/arm64,linux/arm/v7,linux/arm/v8
tags: mgoerentz/threadfin:${{ github.ref_name }}

- name: Push image to GHCR
run: |
docker buildx imagetools create \
--tag ghcr.io/marcelGoerentz/threadfin:${{ github.ref_name }} \
mgoerentz/threadfin:${{ github.ref_name }}
8 changes: 7 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,10 @@ jobs:
push: true
no-cache: true
platforms: linux/amd64,linux/arm64,linux/arm/v7,linux/arm/v8
tags: mgoerentz/threadfin:latest,mgoerentz/threadfin:${{ github.ref_name }}
tags: mgoerentz/threadfin:latest,mgoerentz/threadfin:${{ github.ref_name }},ghcr.io/marcelGoerentz/threadfin:latest,ghcr.io/marcelGoerentz/threadfin:${{ github.ref_name }}
- name: Push image to GHCR
run: |
docker buildx imagetools create \
--tag ghcr.io/marcelGoerentz/threadfin:latest \
--tag ghcr.io/marcelGoerentz/threadfin:${{ github.ref_name }} \
mgoerentz/threadfin:${{ github.ref_name }}
4 changes: 2 additions & 2 deletions threadfin.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,13 @@ var GitHub = GitHubStruct{Branch: "Main", User: "marcelGoerentz", Repo: "Threadf
const Name = "Threadfin"

// Version : Version, die Build Nummer wird in der main func geparst.
const Version = "1.3.1-beta"
const Version = "1.3.2-beta"

// DBVersion : Datanbank Version
const DBVersion = "0.5.0"

// APIVersion : API Version
const APIVersion = "1.3.1-beta"
const APIVersion = "1.3.2-beta"

var homeDirectory = fmt.Sprintf("%s%s.%s%s", src.GetUserHomeDirectory(), string(os.PathSeparator), strings.ToLower(Name), string(os.PathSeparator))
var samplePath = fmt.Sprintf("%spath%sto%sthreadfin%s", string(os.PathSeparator), string(os.PathSeparator), string(os.PathSeparator), string(os.PathSeparator))
Expand Down

0 comments on commit 119a80d

Please sign in to comment.