Skip to content

Commit

Permalink
feat: use releaseworkflow for docker hub release
Browse files Browse the repository at this point in the history
  • Loading branch information
mmuller88 committed Jan 27, 2021
1 parent 4365e37 commit c4703bf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
- id: setversion
name: setversion
run: |-
DVERSION=$(jq .version version.json)
DVERSION=$(jq .version version.json -r)
echo "::set-output name=dversion::$DVERSION"
- name: Build and push
uses: docker/build-push-action@v2
Expand Down
2 changes: 1 addition & 1 deletion .projenrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ project.releaseWorkflow.addJobs({
run: [
// 'JSON=$(cat ./version.json)',
// 'echo "::set-output name=matrix::{\\"include\\":[{\\"version\\":\\"0.0.2\\"}]}"',
'DVERSION=$(jq .version version.json)',
'DVERSION=$(jq .version version.json -r)',
'echo "::set-output name=dversion::$DVERSION"',
// 'echo "::set-output name=matrix::${JSON//\'%\'/\'%25\'}"',
// 'echo "::set-output name=version::${JSON}"',
Expand Down

0 comments on commit c4703bf

Please sign in to comment.