Skip to content

Commit

Permalink
wip: nixify
Browse files Browse the repository at this point in the history
  • Loading branch information
pshirshov committed Oct 30, 2024
1 parent 01ef118 commit e286bc4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ jobs:
ls -la
docker ps -a
docker rm $(docker ps -aq) || true
mkdir "$(pwd)/test"
touch "$(pwd)/test/xxx"
ls -la "$(pwd)/test/"
docker run -v "$(pwd)/test:/test:z" --rm --entrypoint=/bin/bash -t ubuntu -c "ls -la /test"
mkdir "$HOME/test"
touch "$HOME/test/xxx"
ls -la "$HOME/test/"
docker run -v "$HOME/test:/test:z" --rm --entrypoint=/bin/bash -t ubuntu -c "ls -la /test"
# build-jvm:
# runs-on: ubuntu-latest
Expand Down

0 comments on commit e286bc4

Please sign in to comment.