9 Commits

Author SHA1 Message Date
b5439a62d6 sf13
All checks were successful
Build and Release Prerelease / Publish with Dotnet 8.0.405 and Profile PublishLinuxX64 (push) Successful in 1m13s
Build and Release Prerelease / Publish with Dotnet 8.0.405 and Profile PublishWinX64 (push) Successful in 1m16s
2026-03-05 16:33:25 +01:00
c4b56c4305 sf12
All checks were successful
Build and Release Prerelease / Publish with Dotnet 8.0.405 and Profile PublishLinuxX64 (push) Successful in 1m18s
Build and Release Prerelease / Publish with Dotnet 8.0.405 and Profile PublishWinX64 (push) Successful in 1m13s
2026-03-05 16:18:25 +01:00
545e5815c5 sf11
Some checks failed
Build and Release Prerelease / Publish with Dotnet 8.0.405 and Profile PublishWinX64 (push) Has been cancelled
Build and Release Prerelease / Publish with Dotnet 8.0.405 and Profile PublishLinuxX64 (push) Has been cancelled
2026-03-04 20:31:31 +01:00
ff36539de3 sf11
Some checks failed
Build and Release Prerelease / Publish with Dotnet 8.0.405 and Profile PublishLinuxX64 (push) Failing after 8s
Build and Release Prerelease / Publish with Dotnet 8.0.405 and Profile PublishWinX64 (push) Failing after 9s
2026-03-04 20:30:04 +01:00
ada7b657d5 sf10
Some checks failed
Build and Release Prerelease / Publish with Dotnet 8.0.405 and Profile PublishLinuxX64 (push) Failing after 0s
Build and Release Prerelease / Publish with Dotnet 8.0.405 and Profile PublishWinX64 (push) Failing after 0s
2026-03-04 20:28:37 +01:00
989d92698b sf8 2026-03-04 20:26:50 +01:00
f840f8fa56 sf7
All checks were successful
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 1m18s
Build and Release Project / Publish with Dotnet 8.0.405 and Profile PublishLinuxX64 (push) Successful in 1m15s
Build and Release Project / Publish with Dotnet 8.0.405 and Profile PublishWinX64 (push) Successful in 1m15s
2026-03-04 20:08:20 +01:00
47e0f31b34 sf6
All checks were successful
Build and Release Prerelease / Publish with Dotnet 8.0.405 and Profile PublishLinuxX64 (push) Successful in 1m18s
Build and Release Prerelease / Publish with Dotnet 8.0.405 and Profile PublishWinX64 (push) Successful in 1m18s
2026-03-04 19:58:40 +01:00
971d01ff33 sf5
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
2026-03-04 19:56:38 +01:00
2 changed files with 13 additions and 8 deletions

View File

@@ -3,12 +3,12 @@ run-name: Building and Releasing Main Branch 🚀
on: on:
push: push:
tags: tags:
- '**' - 'r**'
- '!p**'
jobs: jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
if: false
strategy: strategy:
matrix: matrix:
dotnet: [ '8.0.405' ] dotnet: [ '8.0.405' ]
@@ -17,6 +17,8 @@ jobs:
steps: steps:
- name: Clone Project - name: Clone Project
uses: actions/checkout@master uses: actions/checkout@master
with:
ref: main
- name: Setup dotnet - name: Setup dotnet
uses: actions/setup-dotnet@v1 uses: actions/setup-dotnet@v1
with: with:
@@ -33,8 +35,8 @@ jobs:
uses: akkuman/gitea-release-action@v1 uses: akkuman/gitea-release-action@v1
with: with:
name: Yee name: Yee
body: Test body: Body
prerelease: false prerelease: false
md5sum: true md5sum: true
files: |- files: |-
${{ matrix.publishprofile }}.* ${{ matrix.publishprofile }}.*

View File

@@ -3,22 +3,25 @@ run-name: Building and Releasing Prerelease Branch 🚀
on: on:
push: push:
tags: tags:
- '**' - 'p**'
- '!r**'
jobs: jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
if: false
strategy: strategy:
matrix: matrix:
dotnet: [ '8.0.405' ] dotnet: [ '8.0.405' ]
publishprofile: [ 'PublishLinuxX64', 'PublishWinX64' ] publishprofile: [ 'PublishLinuxX64', 'PublishWinX64' ]
name: Publish with Dotnet ${{ matrix.dotnet }} and Profile ${{ matrix.publishprofile }} and ${GITEA_HEAD_REF:-${GITEA_REF#refs/heads/}} name: Publish with Dotnet ${{ matrix.dotnet }} and Profile ${{ matrix.publishprofile }}
steps: steps:
- name: Clone Project - name: Clone Project
uses: actions/checkout@master uses: actions/checkout@master
with: with:
ref: prerelease ref: prerelease
#&& echo "RELEASE_MESSAGE=${ git tag -l --format='%(contents:subject)' 'RELEASE_VERSION' }" >> $GITEA_ENV
- name: Test
run: echo "RELEASE_VERSION=${GITEA_REF#refs/*/}" >> $GITEA_ENV && git tag -l --format='%(contents:subject)' RELEASE_VERSION
- name: Setup dotnet - name: Setup dotnet
uses: actions/setup-dotnet@v1 uses: actions/setup-dotnet@v1
with: with:
@@ -35,7 +38,7 @@ jobs:
uses: akkuman/gitea-release-action@v1 uses: akkuman/gitea-release-action@v1
with: with:
name: Yee name: Yee
body: Test body: Body
prerelease: true prerelease: true
md5sum: true md5sum: true
files: |- files: |-