Skip to content

Commit 3e34d6d

Browse files
ci: make image name lowercase
1 parent 922a212 commit 3e34d6d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/build-and-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ jobs:
9898
username: ${{ github.actor }}
9999
password: ${{ secrets.GITHUB_TOKEN }}
100100
- id: full-image-name
101-
run: echo "image-name=${ env.REGISTRY,, }/${ env.IMAGE_NAME,, }" >> $GITHUB_OUTPUT
101+
run: echo "image-name=${{env.REGISTRY}}/${{env.IMAGE_NAME}}" | tr '[:upper:]' '[:lower:]' >> $GITHUB_OUTPUT
102102
- name: Build and push the image to GitHub Container registry
103103
uses: docker/build-push-action@v3.3.0
104104
with:

release.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const publishCommands = `
99
git tag -a -f \${nextRelease.version} \${nextRelease.version} -F CHANGELOG.md || exit 2
1010
git push --force origin \${nextRelease.version} || exit 3
1111
echo "release_status=released" >> $GITHUB_ENV
12-
echo "release_version=${nextRelease.version}" >> $GITHUB_ENV
12+
echo "release_version="\${nextRelease.version} >> $GITHUB_ENV
1313
`
1414
// Only release on branch main
1515
const releaseBranches = ["main"]

0 commit comments

Comments
 (0)