This commit is contained in:
sneakers-the-rat 2024-06-29 00:24:59 -07:00
parent 298a03277e
commit bd6fed324d
Signed by untrusted user who does not match committer: jonny
GPG key ID: 6DCB96EF1E4D232D
3 changed files with 14 additions and 1 deletions

View 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

View file

@ -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 "/".

View file

@ -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"'