Skip to content

Commit

Permalink
Fix workflow bugs (#2391)
Browse files Browse the repository at this point in the history
  • Loading branch information
guy-har authored Aug 22, 2021
1 parent 038f2d6 commit c751e13
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
build_args: VERSION=${{ steps.version.outputs.tag }},
build_args: VERSION=${{ steps.version.outputs.tag }}
labels: db-schema-version=${{ steps.schema.outputs.dbschema_version}}
target: lakectl
repository: treeverse/lakectl
Expand All @@ -71,7 +71,7 @@ jobs:
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
build_args: VERSION=${{ steps.version.outputs.tag }},
build_args: VERSION=${{ steps.version.outputs.tag }}
labels: db-schema-version=${{ steps.schema.outputs.dbschema_version}}
target: lakefs
repository: treeverse/lakefs
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-api-client.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
shell: bash
run: |
if [ "${{ github.event.inputs.tag }}" != "" ]; then
echo "::set-output name=tag::$(echo ${{ github.event.inputs.tag }} | sed s/^v//"
echo "::set-output name=tag::$(echo ${{ github.event.inputs.tag }} | sed s/^v//)"
else
echo "::set-output name=tag::$(echo ${GITHUB_REF##*/} | sed s/^v//)"
fi
Expand Down

0 comments on commit c751e13

Please sign in to comment.