mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-02-03 21:30:35 +00:00
49 lines
1.4 KiB
YAML
49 lines
1.4 KiB
YAML
name: Build and Test
|
|
|
|
on:
|
|
push:
|
|
branches: ["main"]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Setup .NET
|
|
uses: actions/setup-dotnet@v5
|
|
with:
|
|
dotnet-version: |
|
|
8.0.x
|
|
9.0.x
|
|
10.0.x
|
|
|
|
- name: Run tests
|
|
run: dotnet test
|
|
|
|
- name: Run publish script
|
|
run: ./publish-nix.sh -d
|
|
|
|
- name: Update rolling tag
|
|
run: |
|
|
git config user.name "github-actions[bot]"
|
|
git config user.email "github-actions[bot]@users.noreply.github.com"
|
|
git tag -f rolling
|
|
git push origin :refs/tags/rolling || true
|
|
git push origin rolling --force
|
|
|
|
- name: Upload to rolling
|
|
uses: ncipollo/release-action@v1.20.0
|
|
with:
|
|
allowUpdates: True
|
|
artifacts: "*.nupkg,*.snupkg,*.zip"
|
|
body: "Last built commit: ${{ github.sha }}"
|
|
name: "Rolling Release"
|
|
prerelease: True
|
|
replacesArtifacts: True
|
|
tag: "rolling"
|
|
updateOnlyUnreleased: True
|