diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 586f911..df8f86f 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -24,13 +24,13 @@ jobs: run: cmake -B ${{github.workspace}}\build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} - name: Build - run: cmake --build ${{github.workspace}}\build --config ${{env.BUILD_TYPE}} + run: cmake --build ${{github.workspace}}\build --config ${{env.BUILD_TYPE}} --target game-of-life-executable - name: Create zip archive uses: vimtor/action-zip@v1 with: files: build\bin\Release - dest: game.zip + dest: game_of_life.zip - name: Delete old release uses: dev-drprasad/delete-tag-and-release@v0.2.0 @@ -44,6 +44,6 @@ jobs: uses: ncipollo/release-action@v1 with: tag: 'game_of_life.zip' - artifacts: ${{github.workspace}}\game.zip + artifacts: ${{github.workspace}}\game_of_life.zip body: "Latest game of life executable" token: ${{ secrets.GITHUB_TOKEN }}