This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
name: Gitea Actions Demo
|
||||
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
Explore-Gitea-Actions:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event."
|
||||
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!"
|
||||
- run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}."
|
||||
- name: Check out repository code
|
||||
uses: actions/checkout@v4
|
||||
- run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner."
|
||||
- run: echo "🖥️ The workflow is now ready to test your code on the runner."
|
||||
- name: List files in the repository
|
||||
run: |
|
||||
ls ${{ gitea.workspace }}
|
||||
- run: echo "🍏 This job's status is ${{ job.status }}."
|
||||
+17
-1
@@ -73,12 +73,25 @@ services:
|
||||
image: 'docker.gitea.com/gitea:1.26.2'
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- ./data/gitea:/data
|
||||
- ./data/gitea/gitea:/data
|
||||
environment:
|
||||
GITEA__service__DISABLE_REGISTRATION: true
|
||||
GITEA__other__SHOW_FOOTER_VERSION: false
|
||||
GITEA__other__SHOW_FOOTER_POWERED_BY: false
|
||||
|
||||
git-runner:
|
||||
image: 'gitea/act_runner:latest'
|
||||
environment:
|
||||
CONFIG_FILE: /config.yaml
|
||||
GITEA_INSTANCE_URL: "${GITEA_URL}"
|
||||
GITEA_RUNNER_REGISTRATION_TOKEN_FILE: /run/secrets/gitea_runner_registration_token
|
||||
volumes:
|
||||
- ./data/gitea/runner/config.yaml:/config.yaml
|
||||
- ./data/gitea/runner/data:/data
|
||||
- /var/run/docker.sock:/var/run/docker.sock
|
||||
secrets:
|
||||
- gitea_runner_registration_token
|
||||
|
||||
networks:
|
||||
default:
|
||||
name: vbevdev
|
||||
@@ -90,3 +103,6 @@ secrets:
|
||||
file: secrets/beszel_agent_key.txt
|
||||
beszel_agent_token:
|
||||
file: secrets/beszel_agent_token.txt
|
||||
gitea_runner_registration_token:
|
||||
file: secrets/gitea_runner_registration_token.txt
|
||||
|
||||
Reference in New Issue
Block a user