Handle weird input paths by passing as env var

This commit is contained in:
Kyle Lacy
2022-08-27 12:42:58 -07:00
parent fb03cce750
commit 70a14093be

View File

@@ -19,11 +19,14 @@ runs:
run: |
tar \
--dereference --hard-dereference \
--directory ${{ inputs.path }} \
-cvf ${{ runner.temp }}/artifact.tar \
--directory "$INPUT_PATH" \
-cvf "$RUNNER_TEMP/artifact.tar" \
--exclude=.git \
--exclude=.github \
.
env:
INPUT_PATH: ${{ inputs.path }}
RUNNER_TEMP: ${{ runner.temp }}
# Switch to gtar (GNU tar instead of bsdtar which is the default in the MacOS runners so we can use --hard-dereference)
- name: Archive artifact
@@ -32,11 +35,14 @@ runs:
run: |
gtar \
--dereference --hard-dereference \
--directory ${{ inputs.path }} \
-cvf ${{ runner.temp }}/artifact.tar \
--directory "$INPUT_PATH" \
-cvf "$RUNNER_TEMP/artifact.tar" \
--exclude=.git \
--exclude=.github \
.
env:
INPUT_PATH: ${{ inputs.path }}
RUNNER_TEMP: ${{ runner.temp }}
# Massage the paths for Windows only
- name: Archive artifact
@@ -45,12 +51,15 @@ runs:
run: |
tar \
--dereference --hard-dereference \
--directory "${{ inputs.path }}" \
-cvf "${{ runner.temp }}\artifact.tar" \
--directory "$INPUT_PATH" \
-cvf "$RUNNER_TEMP\artifact.tar" \
--exclude=.git \
--exclude=.github \
--force-local \
"."
env:
INPUT_PATH: ${{ inputs.path }}
RUNNER_TEMP: ${{ runner.temp }}
- name: Upload artifact
uses: actions/upload-artifact@main