mirror of
https://forgejo.merr.is/annika/actions-docker-extract.git
synced 2025-12-14 05:52:15 -05:00
ci: Package action automatically on release branch (#15)
This commit is contained in:
parent
abde1147dd
commit
917745b929
9 changed files with 161 additions and 1623 deletions
23
.github/workflows/directory.yml
vendored
23
.github/workflows/directory.yml
vendored
|
|
@ -3,11 +3,20 @@ name: Test Directory Extraction
|
|||
on: [push]
|
||||
|
||||
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@v2
|
||||
- name: Load action build from cache
|
||||
uses: actions/cache@v3
|
||||
with:
|
||||
path: dist
|
||||
key: build-${{ github.sha }}
|
||||
- run: docker build -t example:${{ github.sha }} ./.github/tests
|
||||
- uses: ./
|
||||
id: extract
|
||||
|
|
@ -22,9 +31,16 @@ jobs:
|
|||
- 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@v2
|
||||
- name: Load action build from cache
|
||||
uses: actions/cache@v3
|
||||
with:
|
||||
path: dist
|
||||
key: build-${{ github.sha }}
|
||||
- run: docker build -t example:${{ github.sha }} ./.github/tests
|
||||
- uses: ./
|
||||
id: extract
|
||||
|
|
@ -35,9 +51,16 @@ jobs:
|
|||
- 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@v2
|
||||
- name: Load action build from cache
|
||||
uses: actions/cache@v3
|
||||
with:
|
||||
path: dist
|
||||
key: build-${{ github.sha }}
|
||||
- run: docker build -t example:${{ github.sha }} ./.github/tests
|
||||
- uses: ./
|
||||
id: extract
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue