Skip to content

Commit

Permalink
Test changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Garey Akhmetshin committed Nov 13, 2024
1 parent dfb16d7 commit 2eb614a
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
CMAKE_TOOLCHAIN_FILE: ${{github.workspace}}/cmake/linux-i686.cmake

steps:
- uses: actions/checkout@v2
- uses: actions/checkout
- name: Configure CMake
# Use a bash shell so we can use the same syntax for environment variable
# access regardless of the host operating system
Expand All @@ -22,7 +22,7 @@ jobs:
run: rm -rf build && CC=icc CXX=icpc cmake -B build && cmake --build build -j

- name: Deploy artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact
with:
name: linux
path: ${{github.workspace}}/out/addtofullpack_manager_amxx_i386.so
Expand All @@ -31,7 +31,7 @@ jobs:
runs-on: windows-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout
-
name: Create Build Environment
# Some projects don't allow in-source building, so create a separate build directory
Expand All @@ -55,7 +55,7 @@ jobs:
run: cmake --build . --config Release --parallel

- name: Deploy artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact
with:
name: windows
path: ${{github.workspace}}/out/Release/addtofullpack_manager_amxx.dll
Expand All @@ -66,16 +66,16 @@ jobs:
if: startsWith(github.ref, 'refs/tags/')
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout
- name: Set env
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
- name: Deploying linux artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact
with:
name: linux

- name: Deploying windows artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact
with:
name: windows

Expand Down

0 comments on commit 2eb614a

Please sign in to comment.