build: bump mod v3.36.4, studio v2.18.11 #186
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: NetFramework.Legacy.CI.Release | |
on: | |
push: | |
tags: | |
- "v*.*.*" | |
jobs: | |
build: | |
runs-on: windows-2022 | |
env: | |
Solution_Name: CelesteTAS-EverestInterop.sln | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/cache@v3 | |
with: | |
path: ~/.nuget/packages | |
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }} | |
restore-keys: ${{ runner.os }}-nuget- | |
- name: Setup MSBuild.exe | |
uses: microsoft/[email protected] | |
- name: Build with MSBuild | |
run: msbuild $env:Solution_Name -t:build -restore -p:Configuration=Release,RestoreLockedMode=true -m | |
- name: Zip Files | |
uses: vimtor/[email protected] | |
with: | |
files: CelesteTAS-EverestInterop/bin/net452/ | |
dest: CelesteTAS_${{github.ref_name}}.zip | |
- name: Tagged Release | |
uses: marvinpinto/action-automatic-releases@latest | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
prerelease: false | |
files: CelesteTAS_${{github.ref_name}}.zip |