From cd90e61d61beca62b6b33745c7c3e6f9466bfaf2 Mon Sep 17 00:00:00 2001 From: Nathalie Eugler <97396587+Natlinux81@users.noreply.github.com> Date: Wed, 28 Jun 2023 02:45:43 +0200 Subject: [PATCH] delete yml file --- .../workflows/deploy-math-coloring-game.yml | 39 ------------------- 1 file changed, 39 deletions(-) delete mode 100644 .gitHub/workflows/deploy-math-coloring-game.yml diff --git a/.gitHub/workflows/deploy-math-coloring-game.yml b/.gitHub/workflows/deploy-math-coloring-game.yml deleted file mode 100644 index b68c4a7..0000000 --- a/.gitHub/workflows/deploy-math-coloring-game.yml +++ /dev/null @@ -1,39 +0,0 @@ -name: "Deploy MathColoringGame" - -on: - push: - tags: - - "math-coloring-game/v*" - -env: - PROJECT_PATH: MathColoringGame/MathColoringGame.csproj - -jobs: - deploy: - run-on: windows-latest - steps: - - uses: actions/checkout@v2 - - - uses: actions/setup-dotnet@v1 - with: - dotnet-version: 5.0.x - - - run: dotnet restore ${{ env.PROJECT_PATH}} - - - run: dotnet build ${{ env.PROJECT_PATH}} -c Release --no-restore - - - run: dotnet publish ${{ env.PROJECT_PATH}} -c Release --self-contained -r win-x64 -p:PublishSingleFile=true --no-build - - - uses: actions/create-release@v1 - id: create_release - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - tag_name: ${{ github.ref }} - release_name: $ {{github.ref}} - - - use: 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 }} \ No newline at end of file