fix github action input parameters

This commit is contained in:
nkanaev 2025-03-21 00:02:03 +00:00
parent 7e367ef537
commit efcb6f8bf0

View File

@ -16,10 +16,10 @@ runs:
run: ${{ inputs.cmd }} run: ${{ inputs.cmd }}
shell: bash shell: bash
- name: archive - name: archive
run: tar -cvf ${{ out }}.tar ${{ out }} run: tar -cvf ${{ inputs.out }}.tar ${{ inputs.out }}
shell: bash shell: bash
- name: upload - name: upload
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v4
with: with:
name: ${{ id }} name: ${{ inputs.id }}
path: ${{ out }}.tar path: ${{ inputs.out }}.tar