mirror of
https://forgejo.merr.is/annika/actions-docker-extract.git
synced 2025-12-11 12:28:49 -05:00
🐛 Remove creation of extract destination (#3)
https://docs.docker.com/engine/reference/commandline/cp/ Current behaviour: > DEST_PATH exists and is a directory [...] the source directory is copied into this directory Desired behaviour: > DEST_PATH is created as a directory and the contents of the source directory are copied into this directory
This commit is contained in:
parent
f393b455c4
commit
0f83fca17f
5 changed files with 5 additions and 6 deletions
|
|
@ -50,7 +50,7 @@ jobs:
|
|||
- name: Upload Dist
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
path: ${{ steps.extract.outputs.destination }}/app
|
||||
path: ${{ steps.extract.outputs.destination }}
|
||||
name: dist
|
||||
```
|
||||
|
||||
|
|
@ -78,7 +78,7 @@ jobs:
|
|||
- name: Upload Dist
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
path: ${{ steps.extract.outputs.destination }}/app
|
||||
path: ${{ steps.extract.outputs.destination }}
|
||||
name: dist
|
||||
```
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue