18 lines
399 B
YAML
18 lines
399 B
YAML
name: Create GitHub Release
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
execute-parallel-pipeline:
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: barichello/godot-ci:mono-4.5.1
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
- uses: actions/setup-dotnet@v5
|
|
- name: Dotnet Run Pipeline
|
|
run: dotnet run -c Release --project ./iac/Deploy/Deploy.csproj
|