Merge pull request #1 from CommitteeOfZero/build-release #20
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: Build and Release | |
on: | |
push: | |
tags: | |
- 'v*.*.*' # Triggers on version tags | |
branches: | |
- '**' # Triggers on all branches | |
jobs: | |
build: | |
runs-on: ubuntu-latest # Use a single runner | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: '8.0' | |
- name: Git Version | |
id: version | |
uses: codacy/[email protected] | |
with: | |
prefix: v | |
- name: Build | |
run: | | |
dotnet publish --configuration Release --runtime win-x64 --no-self-contained --output publish/magesscripttool-windows-amd64 src/MagesScriptTool | |
dotnet publish --configuration Release --runtime linux-x64 --no-self-contained --output publish/magesscripttool-linux-amd64 src/MagesScriptTool | |
pushd publish/magesscripttool-windows-amd64 | |
zip -r -j ../magesscripttool-windows-amd64.zip * | |
popd | |
pushd publish/magesscripttool-linux-amd64 | |
zip -r ../magesscripttool-linux-amd64.zip * | |
popd | |
pushd mgs-spec-bank | |
zip -r ../publish/mgs-spec-bank.zip * | |
popd | |
- name: Create GitHub Release | |
uses: softprops/action-gh-release@v1 | |
with: | |
files: | | |
publish/magesscripttool-linux-amd64.zip | |
publish/magesscripttool-windows-amd64.zip | |
publish/mgs-spec-bank.zip | |
tag_name: ${{ steps.version.outputs.version }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |