5 Commits

Author SHA1 Message Date
73bf305ba3 sf2
All checks were successful
Build and Release Project / Publish with Dotnet 8.0.405 and Profile PublishWinX64 (push) Successful in 1m20s
Build and Release Prerelease ${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}} / Publish with Dotnet 8.0.405 and Profile PublishLinuxX64 (push) Has been skipped
Build and Release Prerelease ${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}} / Publish with Dotnet 8.0.405 and Profile PublishWinX64 (push) Has been skipped
Build and Release Project / Publish with Dotnet 8.0.405 and Profile PublishLinuxX64 (push) Successful in 1m20s
2026-03-04 19:37:57 +01:00
1dbd2b44c5 sf 2026-03-04 19:36:35 +01:00
6cf9198957 Update
All checks were successful
Build and Release Project / Publish with Dotnet 8.0.405 and Profile PublishLinuxX64 (push) Successful in 1m22s
Build and Release Project / Publish with Dotnet 8.0.405 and Profile PublishWinX64 (push) Successful in 1m19s
Build and Release Prerelease / Publish with Dotnet 8.0.405 and Profile PublishLinuxX64 (push) Successful in 1m23s
Build and Release Prerelease / Publish with Dotnet 8.0.405 and Profile PublishWinX64 (push) Successful in 1m21s
2026-03-04 19:08:13 +01:00
b6b5a410eb Added Prerelease
All checks were successful
Build and Release Project / Publish with Dotnet 8.0.405 and Profile PublishLinuxX64 (push) Successful in 1m27s
Build and Release Project / Publish with Dotnet 8.0.405 and Profile PublishWinX64 (push) Successful in 1m23s
2026-03-04 19:03:04 +01:00
dd2f95fc32 Test prerelease 2026-03-04 18:55:58 +01:00
2 changed files with 49 additions and 2 deletions

View File

@@ -1,6 +1,11 @@
name: Build and Release Project name: Build and Release Project
run-name: Building and Releasing Main Branch 🚀 run-name: Building and Releasing Main Branch 🚀
on: [push] on:
push:
branches-ignore:
- 'prerelease'
tags:
- '**'
jobs: jobs:
build: build:
@@ -24,7 +29,7 @@ jobs:
run: tar -cvzf ${{ matrix.publishprofile }}.tar.gz -C GiteaTest/publish . run: tar -cvzf ${{ matrix.publishprofile }}.tar.gz -C GiteaTest/publish .
- name: Pack Windows Release - name: Pack Windows Release
if: ${{ matrix.publishprofile == 'PublishWinX64' }} if: ${{ matrix.publishprofile == 'PublishWinX64' }}
run: zip ${{ matrix.publishprofile }}.zip GiteaTest/publish/* run: cd GiteaTest/publish/ && zip ../../${{ matrix.publishprofile }}.zip *
- name: Release Files - name: Release Files
uses: akkuman/gitea-release-action@v1 uses: akkuman/gitea-release-action@v1
with: with:

View File

@@ -0,0 +1,42 @@
name: Build and Release Prerelease ${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}
run-name: Building and Releasing Prerelease Branch ${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}} 🚀
on:
push:
tags:
- '**'
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
with:
ref: prerelease
- 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: true
md5sum: true
files: |-
${{ matrix.publishprofile }}.*