diff --git a/.gitea/workflows/test.yml b/.gitea/workflows/test.yml index 3d8ce30..eb052ce 100644 --- a/.gitea/workflows/test.yml +++ b/.gitea/workflows/test.yml @@ -26,6 +26,9 @@ jobs: test2: runs-on: ubuntu-latest + volumes: + - test-volume:/mnt/test + steps: - name: Checkout code uses: actions/checkout@v4 @@ -34,4 +37,6 @@ jobs: run: pwd - name: touch something - run: touch /tmp/touched.lol \ No newline at end of file + run: | + touch /mnt/test/touched.lol + ls /mnt/test \ No newline at end of file