diff --git a/.forgejo/workflows/deploy.yaml b/.forgejo/workflows/deploy.yaml new file mode 100644 index 0000000..6ac582c --- /dev/null +++ b/.forgejo/workflows/deploy.yaml @@ -0,0 +1,16 @@ +# on: +# push: +# tags: +# - "v*" + +on: [push] + +jobs: + deploy: + runs-on: default + container: + image: docker:26.1.2 + volumes: + - /var/run/docker.sock:/var/run/docker.sock + steps: + - run: echo "Testing ${{ github.ref_name }}"