forgejo: added test action
This commit is contained in:
parent
84d4ecba5b
commit
a82d45ba94
16
.forgejo/workflows/deploy.yaml
Normal file
16
.forgejo/workflows/deploy.yaml
Normal file
|
@ -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 }}"
|
Loading…
Reference in a new issue