Skip to content

Commit

Permalink
testing unpacking an artifact into an existing directory
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeGat committed Jan 14, 2025
1 parent 27914c1 commit 5043b90
Showing 1 changed file with 20 additions and 2 deletions.
22 changes: 20 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,25 @@ name: Test env stuff
on:
workflow_dispatch:
jobs:
e:
up:
runs-on: ubuntu-latest
steps:
- run: yq --version
- run: |
mkdir -p scripts
echo "Hi" >> scripts/test.file
- uses: actions/upload-artifact@v4
with:
name: a
path: '.'

down:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: actions/download-artifact@v4
with:
name: a

- run: tree .

0 comments on commit 5043b90

Please sign in to comment.