ci
Some checks failed
CI / build-test (push) Failing after 26s
Release / pack-and-publish (release) Successful in 27s

This commit is contained in:
2025-11-25 08:01:04 +03:00
parent 61b6856422
commit 1425ce2231

View File

@@ -19,8 +19,8 @@ jobs:
with:
dotnet-version: 8.0.x
- name: Restore
run: dotnet restore
- name: Restore ReleaseUpdater
run: dotnet restore ReleaseUpdater
- name: Set version from tag
id: version
@@ -28,11 +28,11 @@ jobs:
TAG="${GITHUB_REF_NAME#v}"
echo "PACKAGE_VERSION=$TAG" >> $GITHUB_OUTPUT
- name: Build
run: dotnet build -c Release -p:Version=${{ steps.version.outputs.PACKAGE_VERSION }}
- name: Build ReleaseUpdater
run: dotnet build ReleaseUpdater -c Release -p:Version=${{ steps.version.outputs.PACKAGE_VERSION }}
- name: Pack
run: dotnet pack -c Release --no-build -p:PackageVersion=${{ steps.version.outputs.PACKAGE_VERSION }} -o ./artifacts
- name: Pack ReleaseUpdater
run: dotnet pack ReleaseUpdater -c Release --no-build -p:PackageVersion=${{ steps.version.outputs.PACKAGE_VERSION }} -o ./artifacts
- name: Upload package artifact
uses: actions/upload-artifact@v3