Skip to content

Commit

Permalink
fix: Github Actions interpreting version variable as int instead of s…
Browse files Browse the repository at this point in the history
…tring
  • Loading branch information
noevidenz committed Nov 14, 2023
1 parent 206e8af commit a8c2d69
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-releases.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
name: Build Release 1.20
uses: ./.github/workflows/build-release.yaml
with:
version: 1.20
version: "1.20"
master_tags: noevidenz/multipaper-master:1.20
server_tags: noevidenz/multipaper:1.20
secrets: inherit
Expand All @@ -19,7 +19,7 @@ jobs:
name: Build Release 1.19
uses: ./.github/workflows/build-release.yaml
with:
version: 1.19
version: "1.19"
master_tags: noevidenz/multipaper-master:1.19
server_tags: noevidenz/multipaper:1.19
secrets: inherit
Expand All @@ -28,7 +28,7 @@ jobs:
name: Build release 1.18
uses: ./.github/workflows/build-release.yaml
with:
version: 1.18
version: "1.18"
master_tags: noevidenz/multipaper-master:1.18
server_tags: noevidenz/multipaper:1.18
secrets: inherit

0 comments on commit a8c2d69

Please sign in to comment.