Skip to content

Merge branch 'main' of https://github.com/Somfic/EliteVA #53

Merge branch 'main' of https://github.com/Somfic/EliteVA

Merge branch 'main' of https://github.com/Somfic/EliteVA #53

Workflow file for this run

name: .NET
on:
push:
branches: ["main"]
jobs:
release:
runs-on: windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Extract branch name
shell: bash
run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/})"
id: extract_branch
- name: Setup .NET 6
uses: actions/setup-dotnet@v2
with:
dotnet-version: "6.0.x"
- name: Setup GitVersion
run: dotnet tool install --global GitVersion.Tool
- name: Fetch for GitVersion
run: git fetch --tags --unshallow
- name: Fetch main for GitVersion
if: github.ref != 'refs/heads/main'
run: git branch --create-reflog main origin/main
- name: Update version
run: dotnet-gitversion /updateprojectfiles /updateassemblyinfo /output buildserver
- name: Set job output
id: VERSION
run: |
echo '::set-output name=label::${{env.GitVersion_PreReleaseLabel}}'
echo '::set-output name=semver::${{env.GitVersion_LegacySemVer}}'
echo '::set-output name=nuget::${{env.GitVersion_NuGetPreReleaseTagV2}}'
echo '::set-output name=applicable::${{env.GitVersion_PreReleaseLabel == 'alpha' || env.GitVersion_PreReleaseLabel == 'beta' }}'
- name: Apply changes
if: ${{ steps.VERSION.outputs.applicable == 'true' || steps.extract_branch.outputs.branch == 'main' }}
uses: EndBug/[email protected]
with:
author_name: github-actions[bot]
author_email: github-actions[bot]@users.noreply.github.com
message: "Bumped version to ${{env.GitVersion_LegacySemVer}}"
- name: Setup MSBuild
uses: microsoft/setup-msbuild@v1
- name: Setup NuGet
uses: NuGet/setup-nuget@v1
- name: Restore Packages
run: dotnet restore
- name: Build
run: dotnet build -c Release
- name: Make dist
run: mkdir dist
- name: Make plugin
run: mkdir dist\plugin
- name: Copy to dist
run: xcopy "bin\Release\net472\" "dist\plugin" /Y /I
- name: Add Costura.Fody
run: dotnet add package Costura.Fody
- name: Build
run: dotnet build -c Release
- name: Copy to dist
run: xcopy "bin\Release\net472\" "dist\plugin" /Y /I
- name: Generate profile
run: dotnet run --project ProfileGenerator -c Release
- name: Copy to dist
run: echo F|xcopy "Profile.vap" "dist\EliteVA v${{ steps.VERSION.outputs.semver }}.vap" /Y /I
- name: Zip dist
uses: thedoctor0/[email protected]
with:
type: "zip"
filename: "EliteVA.zip"
path: "dist/*"
- name: Release
uses: softprops/action-gh-release@v1
with:
tag_name: ${{ steps.VERSION.outputs.semver }}
files: EliteVA.zip
prerelease: ${{ steps.extract_branch.outputs.branch != 'main' }}