Optimize feedback workflow #31
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
# This workflow will build a .NET project | |
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net | |
name: .NET | |
on: [push] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 7.0.x | |
- name: Get Commit short hash | |
id: vars | |
run: | | |
echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT | |
echo "latest_tag=$(git describe --tags --abbrev=0)" >> $GITHUB_OUTPUT | |
shell: bash | |
- name: Restore dependencies and build | |
run: | | |
dotnet restore | |
dotnet publish /p:OutputType=WinExe | |
- name: Create Artifact | |
run: | | |
cp -r ./glossaries ./db changelog.md oo2core_6_win64.dll ./bin/Release/net7.0-windows/publish | |
#7z a SoulsModTranslator${{steps.vars.outputs.latest_tag}}.zip ./bin/Release/net7.0-windows/publish | |
python create_release_note.py | |
shell: bash | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: SoulsModTranslator-${{steps.vars.outputs.sha_short}} | |
path: ./bin/Release/net7.0-windows/publish | |
- name: Release | |
uses: softprops/action-gh-release@v2 | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
body_path: ${{ github.workspace }}/release_note | |
files: | | |
SoulsModTranslator${{steps.vars.outputs.latest_tag}}.zip | |
repository: hhhxiao/SoulsModTranslator |