fix: Remove period (.
) from destination path
#86
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test Directory Extraction | |
on: [pull_request] | |
jobs: | |
action: | |
uses: ./.github/workflows/build_action.yaml | |
root-directory: | |
runs-on: ubuntu-latest | |
needs: | |
- action | |
name: Extract Contents of Directory from Example Image | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Load action build from cache | |
uses: actions/cache@v4 | |
with: | |
path: dist | |
key: build-${{ github.sha }} | |
- run: docker build -t example:${{ github.sha }} ./.github/tests | |
- uses: ./ | |
id: extract | |
with: | |
image: example:${{ github.sha }} | |
path: /files/. | |
- run: test -e ${{ steps.extract.outputs.destination }}/001.txt || exit 1 | |
- run: test -e ${{ steps.extract.outputs.destination }}/002.txt || exit 1 | |
- run: test -e ${{ steps.extract.outputs.destination }}/003.txt || exit 1 | |
- run: test -e ${{ steps.extract.outputs.destination }}/x/004.txt || exit 1 | |
- run: test -e ${{ steps.extract.outputs.destination }}/x/005.txt || exit 1 | |
- run: test -e ${{ steps.extract.outputs.destination }}/y/006.txt || exit 1 | |
nested-directory: | |
runs-on: ubuntu-latest | |
needs: | |
- action | |
name: Extract Nested Directory from Example Image | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Load action build from cache | |
uses: actions/cache@v4 | |
with: | |
path: dist | |
key: build-${{ github.sha }} | |
- run: docker build -t example:${{ github.sha }} ./.github/tests | |
- uses: ./ | |
id: extract | |
with: | |
image: example:${{ github.sha }} | |
path: /files/x | |
- run: test -e ${{ steps.extract.outputs.destination }}/x/004.txt || exit 1 | |
- run: test -e ${{ steps.extract.outputs.destination }}/x/005.txt || exit 1 | |
nested-directory-contents: | |
runs-on: ubuntu-latest | |
needs: | |
- action | |
name: Extract Nested Contents of Directory from Example Image | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Load action build from cache | |
uses: actions/cache@v4 | |
with: | |
path: dist | |
key: build-${{ github.sha }} | |
- run: docker build -t example:${{ github.sha }} ./.github/tests | |
- uses: ./ | |
id: extract | |
with: | |
image: example:${{ github.sha }} | |
path: /files/x/. | |
- run: test -e ${{ steps.extract.outputs.destination }}/004.txt || exit 1 | |
- run: test -e ${{ steps.extract.outputs.destination }}/005.txt || exit 1 |