From 2e142a57f1b605d4bd4b222185d444182ee0bd8b Mon Sep 17 00:00:00 2001 From: Sebastian Frank Date: Tue, 21 Mar 2023 14:42:10 +0000 Subject: [PATCH] test gitea actions --- .gitea/workflows/deploy.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml index 5a116e5..594d2c2 100644 --- a/.gitea/workflows/deploy.yaml +++ b/.gitea/workflows/deploy.yaml @@ -8,6 +8,11 @@ on: jobs: deploy: runs-on: ubuntu-latest + container: + image: alpine:edge + volumes: + - /var/run/docker.sock:/var/run/docker.sock + - /data:/data steps: - uses: actions/checkout@v3 with: @@ -16,3 +21,6 @@ jobs: - run: hostname - run: pwd - run: ls -la + - run: pkg install -y docker + - run: docker ps + - run: ls -la /data