We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d540785 commit c9ba8e6Copy full SHA for c9ba8e6
1 file changed
action.yml
@@ -127,7 +127,7 @@ runs:
127
if: inputs.dockerenabled == 'true'
128
uses: docker/build-push-action@v2
129
with:
130
- context: .
+ context: ${{ inputs.workingdirectory }}
131
push: ${{ steps.preparation.outputs.push }}
132
file: ${{ inputs.workingdirectory }}/${{ inputs.dockerfile }}
133
target: ${{ inputs.dockerbuildtarget }}
@@ -139,6 +139,7 @@ runs:
139
140
- name: Update Docker Image in Repository
141
shell: bash
142
+ working-directory: ${{ inputs.workingdirectory }}
143
run: |
144
commit_changes () {
145
if [[ ${{ steps.preparation.outputs.push }} == "true" ]]; then
0 commit comments