Skip to content

Commit

Permalink
Few fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Dextinfire committed Sep 7, 2024
1 parent 0351cc6 commit dcd52b2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
# echo "LIBATRAC9DIR=vendor/LibAtrac9" >> $GITHUB_ENV

- name: Run CMake with vcpkg.json manifest
uses: lukka/run-cmake@v11
uses: lukka/run-cmake@v10
with:
cmakeListsTxtPath: '${{ github.workspace }}/CMakeLists.txt'
configurePreset: ninja-config
Expand All @@ -92,10 +92,10 @@ jobs:
- name: Archive Artifacts
run: 7z u impacto-${{ matrix.os_name }}-${{ steps.version.outputs.version }}-${{ github.sha }}.zip release/x64-Release
if: (github.ref == 'refs/heads/master')
if: startsWith(github.ref, 'refs/tags') || (github.ref == 'refs/heads/master')
- name: Upload Artifact
uses: actions/upload-artifact@v4.1.0
if: (github.ref == 'refs/heads/master')
if: startsWith(github.ref, 'refs/tags') || (github.ref == 'refs/heads/master')
with:
path: impacto-${{ matrix.os_name }}-${{ steps.version.outputs.version }}-${{ github.sha }}.zip
name: release-${{ matrix.os_name }}
Expand Down

0 comments on commit dcd52b2

Please sign in to comment.