Skip to content

Commit

Permalink
Windows + Linux builds and auto versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
Dextinfire committed Aug 25, 2024
1 parent eac9e10 commit ba2081a
Showing 1 changed file with 18 additions and 12 deletions.
30 changes: 18 additions & 12 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,12 @@ on:
push:
tags:
- 'v*.*.*' # Triggers on version tags
branches:
- '**' # Triggers on all branches

jobs:
build:
runs-on: windows-latest
runs-on: ubuntu-latest # Use a single runner

steps:
- name: Checkout code
Expand All @@ -18,21 +20,25 @@ jobs:
with:
dotnet-version: '8.0'

- name: Restore dependencies
run: dotnet restore
- name: Git Version
id: version
uses: codacy/[email protected]

- name: Build
run: dotnet build --configuration Release --no-restore

- name: Publish
run: dotnet publish --configuration Release --no-build --output ./output

- name: Zip Files
run: Compress-Archive -Path ./output/* mgsscripttools.zip
run: |
dotnet publish --configuration Release --runtime win-x64 --no-self-contained --output publish/magesscripttool-windows-amd64 src/MagesScriptTool
cd ./output/windows
zip -r ../../magesscripttool-windows-amd64.zip ./*
cd ../linux
zip -r ../../magesscripttool-linux-amd64.zip ./*
cd ../..
- name: Create GitHub Release
uses: softprops/action-gh-release@v1
with:
files: mgsscripttools.zip
files: |
magesscripttool-linux-amd64.zip
magesscripttool-windows-amd64.zip
tag_name: ${{ steps.version.outputs.version }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit ba2081a

Please sign in to comment.