Skip to content

Commit

Permalink
add ls
Browse files Browse the repository at this point in the history
Signed-off-by: Antonio Navarro Perez <antnavper@gmail.com>
  • Loading branch information
ajnavarro committed Dec 17, 2021
1 parent ad99659 commit 8f4cb74
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/build-32.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ jobs:
githubToken: ${{ github.token }}

setup: |
mkdir -p "${PWD}/artifacts"
mkdir -p "/tmp/artifacts"
dockerRunArgs: |
--volume "${PWD}/artifacts:/artifacts"
--volume "/tmp/artifacts:/artifacts"
install: |
apt update
apt install -y fuse libfuse-dev rpm pkg-config curl git make gcc g++
Expand All @@ -44,10 +44,13 @@ jobs:
make test
make build
cp bin/* /artifacts/
cp bin/* /artifacts
- name: Show the artifact
run: |
ls -al "/tmp/artifacts"
- name: Upload artifacts
uses: actions/upload-artifact@v2
with:
if-no-files-found: error
name: build-armv7
path: "${PWD}/artifacts/*"
path: "/tmp/artifacts/*"

0 comments on commit 8f4cb74

Please sign in to comment.