Compare commits
20 Commits
math-color
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
dd8dcecbaa | ||
|
|
68bb778ad1 | ||
|
|
4992553907 | ||
|
|
31529614ab | ||
|
|
a5533a7521 | ||
|
|
53c8de5b37 | ||
|
|
96d2c5315c | ||
|
|
cefef2b304 | ||
|
|
bb08320f46 | ||
|
|
2cdd04ba2c | ||
|
|
11873b7110 | ||
|
|
9e80b99959 | ||
|
|
66c2bb694a | ||
|
|
8cb2ae2e27 | ||
|
|
fe3794078d | ||
|
|
e668e4b535 | ||
|
|
f9fbf68301 | ||
|
|
1a7907d09c | ||
|
|
cd90e61d61 | ||
|
|
8c44b176d1 |
@@ -1,22 +1,24 @@
|
||||
name: "Deploy MathColoringGame"
|
||||
name: "DeployMathColoringGame"
|
||||
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- "math-coloring-game/v*"
|
||||
branches: [ "main" ]
|
||||
pull_request:
|
||||
branches: [ "main" ]
|
||||
|
||||
env:
|
||||
PROJECT_PATH: MathColoringGame/MathColoringGame.csproj
|
||||
|
||||
jobs:
|
||||
|
||||
deploy:
|
||||
run-on: windows-latest
|
||||
runs-on: windows-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
- uses: actions/setup-dotnet@v1
|
||||
with:
|
||||
dotnet-version: 5.0.x
|
||||
dotnet-version: 6.0.x
|
||||
|
||||
- run: dotnet restore ${{ env.PROJECT_PATH}}
|
||||
|
||||
@@ -32,8 +34,8 @@ jobs:
|
||||
tag_name: ${{ github.ref }}
|
||||
release_name: $ {{github.ref}}
|
||||
|
||||
- use: csexton/release-asset-action@v2
|
||||
- uses: csexton/release-asset-action@v2
|
||||
with:
|
||||
github-token: ${{ secrets.GITHUB_TOKEN}}
|
||||
pattern: MathColoringGame/bin/Release/net6.0-windows/win-x64/publish/*.exe
|
||||
release-url: ${{ steps.create_release.outputs.upload_url }}
|
||||
release-url: ${{ steps.create_release.outputs.upload_url }}
|
||||
@@ -6,11 +6,9 @@ using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using System.Windows;
|
||||
|
||||
namespace MathColoringGame
|
||||
namespac MathColoringGame
|
||||
{
|
||||
/// <summary>
|
||||
/// Interaction logic for App.xaml
|
||||
/// </summary>
|
||||
|
||||
public partial class App : Application
|
||||
{
|
||||
}
|
||||
|
||||
@@ -7,6 +7,7 @@
|
||||
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
|
||||
<IncludeAllContentForSelfExtract>true</IncludeAllContentForSelfExtract>
|
||||
<UseWPF>true</UseWPF>
|
||||
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
|
||||
<AssemblyVersion>1.0.0.2</AssemblyVersion>
|
||||
</PropertyGroup>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user