summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLaG1924 <lag1924@gmail.com>2021-06-26 02:47:20 +0200
committerLaG1924 <lag1924@gmail.com>2021-06-26 05:36:48 +0200
commit5ec7ea59011adcd5c70bb22e8912d7fbf567863b (patch)
tree14bf3893f4cf9dd7be60180c992cd54711a06e71
parentFixed memory leak in lua (diff)
downloadAltCraft-5ec7ea59011adcd5c70bb22e8912d7fbf567863b.tar
AltCraft-5ec7ea59011adcd5c70bb22e8912d7fbf567863b.tar.gz
AltCraft-5ec7ea59011adcd5c70bb22e8912d7fbf567863b.tar.bz2
AltCraft-5ec7ea59011adcd5c70bb22e8912d7fbf567863b.tar.lz
AltCraft-5ec7ea59011adcd5c70bb22e8912d7fbf567863b.tar.xz
AltCraft-5ec7ea59011adcd5c70bb22e8912d7fbf567863b.tar.zst
AltCraft-5ec7ea59011adcd5c70bb22e8912d7fbf567863b.zip
-rw-r--r--.github/workflows/ci.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 7404806..0e5a452 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -48,9 +48,9 @@ jobs:
run: cmake --build ${{ github.workspace }}/build --config ${{ matrix.build_type }} --target AltCraft
- name: Upload debug symbols artifacts
uses: actions/upload-artifact@v2
- if: ${{ runner.os == 'Windows' }}
+ if: ${{ runner.os == 'Windows' && contains(matrix.build_type, 'Deb') }}
with:
- name: symbols-${{ matrix.platform.name }}-${{ matrix.build_type }}
+ name: symbols-nightly-b${{ github.run_number }}-${{ matrix.platform.name }}-${{ matrix.build_type }}
path: ${{ github.workspace }}/build/**/*.pdb
- name: Copy binaries for packaging
run: mkdir $(echo "${{ github.workspace }}"|sed 's/\\/\//g')/package && find $(echo "${{ github.workspace }}"|sed 's/\\/\//g')/build -type f \( -name "*.exe" -o -name "*.dll" -o -name "*.dylib" -o -name "*.so" \) -exec cp {} $(echo "${{ github.workspace }}"|sed 's/\\/\//g')/package \;
@@ -70,6 +70,6 @@ jobs:
- name: Upload package artifacts
uses: actions/upload-artifact@v2
with:
- name: AltCraft-${{ matrix.platform.name }}-${{ matrix.build_type }}
+ name: AltCraft-nightly-b${{ github.run_number }}-${{ matrix.platform.name }}-${{ matrix.build_type }}
path: ${{ github.workspace }}/package
\ No newline at end of file