Fix ci project files (#2) #22
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: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 6.0.x | |
- name: Restore dependencies | |
run: dotnet restore | |
- name: Build | |
run: dotnet build --configuration Release --no-restore | |
- name: Publish | |
run: dotnet publish --configuration Release | |
- name: Zip the Build | |
run: zip -r "mele-launcher-bin-win.zip" ./MELE-launcher/bin/Release/net5.0/ | |
- name: 'Get Previous tag' | |
id: previoustag | |
uses: "WyriHaximus/github-action-get-previous-tag@v1" | |
with: | |
fallback: 0.3.0 # Optional fallback tag to use when no tag can be found | |
- name: 'Get next minor version' | |
id: semvers | |
uses: "WyriHaximus/github-action-next-semvers@v1" | |
with: | |
version: ${{ steps.previoustag.outputs.tag }} | |
- name: 'Create new milestone' | |
id: createmilestone | |
uses: "WyriHaximus/github-action-create-milestone@v1" | |
with: | |
title: ${{ steps.semvers.outputs.patch }} | |
env: | |
GITHUB_TOKEN: "${{ secrets.WORKFLOW_TOKEN }}" | |
- name: Release | |
uses: softprops/[email protected] | |
# if: startsWith(github.ref, 'refs/tags/') | |
with: | |
tag_name: ${{ steps.semvers.outputs.patch }} | |
files: "mele-launcher-bin-win.zip" | |
env: | |
GITHUB_TOKEN: "${{ secrets.WORKFLOW_TOKEN }}" | |