Skip to content

Commit

Permalink
fix: fixing version output
Browse files Browse the repository at this point in the history
  • Loading branch information
brayn003 committed Mar 24, 2024
1 parent 8f10de1 commit cc9c95c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release-client.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
REPO=${{ github.repository }}
RELEASE_MANIFEST=$(wget https://raw.githubusercontent.com/$REPO/main/.release-please-manifest.json -q -O -)
VERSION=$(jq -r '.client' <<< "${RELEASE_MANIFEST}")
echo "version=${VERSION}" >> ">> $GITHUB_OUTPUT"
echo "version=${VERSION}" >> "$GITHUB_OUTPUT"
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-server.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
REPO=${{ github.repository }}
RELEASE_MANIFEST=$(wget https://raw.githubusercontent.com/$REPO/main/.release-please-manifest.json -q -O -)
VERSION=$(jq -r '.server' <<< "${RELEASE_MANIFEST}")
echo "version=${VERSION}" >> ">> $GITHUB_OUTPUT"
echo "version=${VERSION}" >> "$GITHUB_OUTPUT"
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-tick-workers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
REPO=${{ github.repository }}
RELEASE_MANIFEST=$(wget https://raw.githubusercontent.com/$REPO/main/.release-please-manifest.json -q -O -)
VERSION=$(jq -r '.tick-workers' <<< "${RELEASE_MANIFEST}")
echo "version=${VERSION}" >> ">> $GITHUB_OUTPUT"
echo "version=${VERSION}" >> "$GITHUB_OUTPUT"
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
Expand Down

0 comments on commit cc9c95c

Please sign in to comment.