Files
Test/.gitea/workflows/MainRelease.yaml
thx20001 971d01ff33
Some checks failed
Build and Release Prerelease / Publish with Dotnet 8.0.405 and Profile PublishLinuxX64 and ${GITEA_HEAD_REF:-${GITEA_REF#refs/heads/}} (push) Successful in 1m22s
Build and Release Prerelease / Publish with Dotnet 8.0.405 and Profile PublishWinX64 and ${GITEA_HEAD_REF:-${GITEA_REF#refs/heads/}} (push) Has been cancelled
sf5
2026-03-04 19:56:38 +01:00

42 lines
1.3 KiB
YAML

name: Build and Release Project
run-name: Building and Releasing Main Branch 🚀
on:
push:
tags:
- 'r**'
- '!p**'
jobs:
build:
runs-on: ubuntu-latest
if: false
strategy:
matrix:
dotnet: [ '8.0.405' ]
publishprofile: [ 'PublishLinuxX64', 'PublishWinX64' ]
name: Publish with Dotnet ${{ matrix.dotnet }} and Profile ${{ matrix.publishprofile }}
steps:
- name: Clone Project
uses: actions/checkout@master
- name: Setup dotnet
uses: actions/setup-dotnet@v1
with:
dotnet-version: ${{ matrix.dotnet }}
- name: Build / Publish Project
run: dotnet publish GiteaTest.sln -p:PublishProfile=${{ matrix.publishprofile }}
- name: Pack Linux Release
if: ${{ matrix.publishprofile == 'PublishLinuxX64' }}
run: tar -cvzf ${{ matrix.publishprofile }}.tar.gz -C GiteaTest/publish .
- name: Pack Windows Release
if: ${{ matrix.publishprofile == 'PublishWinX64' }}
run: cd GiteaTest/publish/ && zip ../../${{ matrix.publishprofile }}.zip *
- name: Release Files
uses: akkuman/gitea-release-action@v1
with:
name: Yee
body: Test
prerelease: false
md5sum: true
files: |-
${{ matrix.publishprofile }}.*