This commit is contained in:
2023-03-22 02:28:43 -07:00
parent 4e84b0429a
commit 5f5df4a1d6
9 changed files with 12 additions and 13 deletions

View File

@@ -35,4 +35,4 @@ runs:
- name: "Take ownership of output."
uses: act/common/distros/busybox@master
with:
args: chown ${{ steps.ids.outputs.uid }}:${{ steps.ids.outputs.gid }} "${{ inputs.file }}" -R
command: chown ${{ steps.ids.outputs.uid }}:${{ steps.ids.outputs.gid }} "${{ inputs.file }}" -R

View File

@@ -64,4 +64,4 @@ runs:
uses: act/common/distros/rockylinux@master
with:
workingDir: ${{ inputs.workingDir }}
args: ${{ steps.command.outputs.command }}
command: ${{ steps.command.outputs.command }}

View File

@@ -21,7 +21,7 @@ runs:
id: download
uses: act/common/distros/rockylinux@master
with:
args: sh "_download.sh" "${{ inputs.url }}" "${{ inputs.outputFile }}"
command: sh "_download.sh" "${{ inputs.url }}" "${{ inputs.outputFile }}"
- run: rm _download.sh
shell: bash
- name: "Own artifacts."

View File

@@ -35,7 +35,7 @@ runs:
id: convert
uses: act/common/distros/busybox@master
with:
args: ${{ steps.command.outputs.command }}
command: ${{ steps.command.outputs.command }}
- name: "Delete source."
run: |
if [[ ${{ inputs.deleteSource }} != "true" ]]; then