mirror of
https://forgejo.merr.is/annika/actions-docker-extract.git
synced 2025-12-13 17:40:19 -05:00
🐛 Extract contents of directory (#4)
This commit is contained in:
parent
0f83fca17f
commit
7d86f1b9ad
6 changed files with 103 additions and 59 deletions
29
.github/workflows/file.yml
vendored
Normal file
29
.github/workflows/file.yml
vendored
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
name: Test File Extraction
|
||||
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
root-file:
|
||||
runs-on: ubuntu-latest
|
||||
name: Extract Example File From Root of Built 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/001.txt
|
||||
- run: test -e ${{ steps.extract.outputs.destination }}/001.txt || exit 1
|
||||
nested-file:
|
||||
runs-on: ubuntu-latest
|
||||
name: Extract Nexted Example File From Built 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/y/006.txt
|
||||
- run: test -e ${{ steps.extract.outputs.destination }}/006.txt || exit 1
|
||||
Loading…
Add table
Add a link
Reference in a new issue