🐛 Extract contents of directory (#4)

This commit is contained in:
Samuel Ryan 2020-09-06 18:47:06 +01:00 committed by GitHub
parent 0f83fca17f
commit 7d86f1b9ad
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 103 additions and 59 deletions

48
.github/workflows/directory.yml vendored Normal file
View file

@ -0,0 +1,48 @@
name: Test Directory Extraction
on: [push]
jobs:
root-directory:
runs-on: ubuntu-latest
name: Extract Contents of Directory from Example Image
steps:
- uses: actions/checkout@v2
- 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
name: Extract Nested Directory from Example Image
steps:
- uses: actions/checkout@v2
- 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
name: Extract Nested Contents of Directory from Example Image
steps:
- uses: actions/checkout@v2
- 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