From 25a822f1864132de7df8efabc667330e391563c5 Mon Sep 17 00:00:00 2001 From: Dimitris Bousoulegkas <74494805+StaringLongingly@users.noreply.github.com> Date: Sat, 24 Aug 2024 07:21:16 +0300 Subject: [PATCH] Update game_ci.yml --- .github/workflows/game_ci.yml | 102 ++++++++++++++++------------------ 1 file changed, 48 insertions(+), 54 deletions(-) diff --git a/.github/workflows/game_ci.yml b/.github/workflows/game_ci.yml index 6392d17..2389c91 100644 --- a/.github/workflows/game_ci.yml +++ b/.github/workflows/game_ci.yml @@ -11,58 +11,6 @@ on: - v* jobs: - release: - runs-on: ubuntu-latest - permissions: - contents: write - steps: - - name: Checkout code - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - - name: Set up GitVersion - uses: gittools/actions/gitversion/setup@v0.9.15 - with: - versionSpec: '5.x' - - - name: Execute GitVersion - uses: gittools/actions/gitversion/execute@v0.9.15 - with: - useConfigFile: true - configFilePath: GitVersion.yml - - - name: Generate Release Notes - uses: johnyherangi/create-release-notes@main - id: create-release-notes - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - - name: Debug (I fucking hate gh actions) - run: | - echo "GitVersion Tag:" - echo "${{env.GitVersion_MajorMinorPatch}}" - echo "Logs:" - echo "${{ steps.create-release-notes.outputs.release-notes }}" - - - name: Create Release - id: create_release - uses: actions/create-release@latest - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - tag_name: ${{env.GitVersion_MajorMinorPatch}} - release_name: "New ver ${{env.GitVersion_MajorMinorPatch}}" - body: | - ### New stuff: - ${{ steps.create-release-notes.outputs.release-notes }} - - As always thanks for playing! - I love you <33 - draft: false - prerelease: true - - web: needs: release runs-on: ubuntu-latest @@ -172,8 +120,8 @@ jobs: name: game_windows path: game_windows.zip - release-upload: - needs: [web, linux, windows, release] + release: + needs: [web, linux, windows] runs-on: ubuntu-latest permissions: contents: write @@ -193,6 +141,52 @@ jobs: with: name: game_windows + - name: Checkout code + uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - name: Set up GitVersion + uses: gittools/actions/gitversion/setup@v0.9.15 + with: + versionSpec: '5.x' + + - name: Execute GitVersion + uses: gittools/actions/gitversion/execute@v0.9.15 + with: + useConfigFile: true + configFilePath: GitVersion.yml + + - name: Generate Release Notes + uses: johnyherangi/create-release-notes@main + id: create-release-notes + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + + - name: Debug (I fucking hate gh actions) + run: | + echo "GitVersion Tag:" + echo "${{env.GitVersion_MajorMinorPatch}}" + echo "Logs:" + echo "${{ steps.create-release-notes.outputs.release-notes }}" + + - name: Create Release + id: create_release + uses: actions/create-release@latest + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + tag_name: ${{env.GitVersion_MajorMinorPatch}} + release_name: "New ver ${{env.GitVersion_MajorMinorPatch}}" + body: | + ### New stuff: + ${{ steps.create-release-notes.outputs.release-notes }} + + As always thanks for playing! + I love you <33 + draft: false + prerelease: true + - name: Upload Web Release Asset id: upload-release-asset uses: actions/upload-release-asset@v1