Compare commits
3 Commits
2337fddd47
...
p1.0.1
| Author | SHA1 | Date | |
|---|---|---|---|
| 6cf9198957 | |||
| b6b5a410eb | |||
| dd2f95fc32 |
@@ -1,6 +1,11 @@
|
||||
name: Build and Release Project
|
||||
run-name: Building and Releasing Main Branch 🚀
|
||||
on: [push]
|
||||
on:
|
||||
push:
|
||||
branches-ignore:
|
||||
- 'prerelease'
|
||||
tags:
|
||||
- '**'
|
||||
|
||||
jobs:
|
||||
build:
|
||||
@@ -24,7 +29,7 @@ jobs:
|
||||
run: tar -cvzf ${{ matrix.publishprofile }}.tar.gz -C GiteaTest/publish .
|
||||
- name: Pack Windows Release
|
||||
if: ${{ matrix.publishprofile == 'PublishWinX64' }}
|
||||
run: zip ${{ matrix.publishprofile }}.zip GiteaTest/publish/*
|
||||
run: cd GiteaTest/publish/ && zip ../../${{ matrix.publishprofile }}.zip *
|
||||
- name: Release Files
|
||||
uses: akkuman/gitea-release-action@v1
|
||||
with:
|
||||
41
.gitea/workflows/PreRelease.yaml
Normal file
41
.gitea/workflows/PreRelease.yaml
Normal file
@@ -0,0 +1,41 @@
|
||||
name: Build and Release Prerelease
|
||||
run-name: Building and Releasing Prerelease Branch 🚀
|
||||
on:
|
||||
push:
|
||||
branches-ignore:
|
||||
- 'main'
|
||||
tags:
|
||||
- 'p**'
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
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: true
|
||||
md5sum: true
|
||||
files: |-
|
||||
${{ matrix.publishprofile }}.*
|
||||
Reference in New Issue
Block a user