|
|
|
|
@ -1,12 +1,15 @@
|
|
|
|
|
# .gitea/workflows/build.yaml
|
|
|
|
|
name: Automated Unity Build
|
|
|
|
|
run-name: ${{ github.actor }} is testing out Gitea Actions
|
|
|
|
|
on: [push]
|
|
|
|
|
on:
|
|
|
|
|
push:
|
|
|
|
|
branches:
|
|
|
|
|
- main
|
|
|
|
|
jobs:
|
|
|
|
|
Explore-Gitea-Actions:
|
|
|
|
|
runs-on: [self-hosted, windows]
|
|
|
|
|
container:
|
|
|
|
|
image: unityci/editor
|
|
|
|
|
image: ubuntu-latest
|
|
|
|
|
steps:
|
|
|
|
|
- run: echo "The job was automatically triggered by a ${{ github.event_name }} event."
|
|
|
|
|
- run: echo "This job is now running on a ${{ runner.os }} server hosted by Gitea!"
|
|
|
|
|
|