test run
This commit is contained in:
parent
298a03277e
commit
bd6fed324d
3 changed files with 14 additions and 1 deletions
11
.forgejo/workflows/demo.yaml
Normal file
11
.forgejo/workflows/demo.yaml
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
on: [push]
|
||||||
|
jobs:
|
||||||
|
test:
|
||||||
|
runs-on: docker
|
||||||
|
steps:
|
||||||
|
- run: echo All Good
|
||||||
|
|
||||||
|
test2:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- run: echo All Good
|
|
@ -47,7 +47,7 @@ cache:
|
||||||
host: ""
|
host: ""
|
||||||
# The port of the cache server.
|
# The port of the cache server.
|
||||||
# 0 means to use a random available port.
|
# 0 means to use a random available port.
|
||||||
port: 0
|
port: 8080
|
||||||
# The external cache server URL. Valid only when enable is true.
|
# The external cache server URL. Valid only when enable is true.
|
||||||
# If it's specified, act_runner will use this URL as the ACTIONS_CACHE_URL rather than start a server by itself.
|
# If it's specified, act_runner will use this URL as the ACTIONS_CACHE_URL rather than start a server by itself.
|
||||||
# The URL should generally end with "/".
|
# The URL should generally end with "/".
|
||||||
|
|
|
@ -23,5 +23,7 @@ services:
|
||||||
volumes:
|
volumes:
|
||||||
- /home/forgejo-runner/data:/data
|
- /home/forgejo-runner/data:/data
|
||||||
restart: 'unless-stopped'
|
restart: 'unless-stopped'
|
||||||
|
expose:
|
||||||
|
- "8080"
|
||||||
|
|
||||||
command: '/bin/sh -c "sleep 5; forgejo-runner daemon --config config.yml"'
|
command: '/bin/sh -c "sleep 5; forgejo-runner daemon --config config.yml"'
|
Loading…
Reference in a new issue