Skip to content

Commit 53f09c6

Browse files
committed
fix(ci): move executable
1 parent a5325dd commit 53f09c6

2 files changed

Lines changed: 6 additions & 3 deletions

File tree

.github/workflows/linux-static.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,17 +68,20 @@ jobs:
6868
cd build
6969
cmake ../Project_LemonLime -GNinja -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} -DLEMON_BUILD_INFO="Build for Linux" -DLEMON_BUILD_EXTRA_INFO="Build on $(uname -sr)" -DCMAKE_PREFIX_PATH=../qt
7070
cmake --build . --target package --parallel $(nproc)
71+
cd ..
72+
cd Project_LemonLime
73+
cp ../build/lemon ./
7174
- name: Upload artifact
7275
uses: actions/upload-artifact@v2-preview
7376
with:
7477
name: LemonLime-linux-x86_64-${{ matrix.build_type }}
75-
path: ../build/lemon
78+
path: lemon
7679
- name: Upload binaries to release
7780
uses: svenstaro/upload-release-action@v1-release
7881
if: github.event_name == 'release'
7982
with:
8083
repo_token: ${{ secrets.GITHUB_TOKEN }}
81-
file: ../build/lemon
84+
file: lemon
8285
asset_name: LemonLime-linux-x86_64-${{ matrix.build_type }}
8386
tag: ${{ github.ref }}
8487
overwrite: true

makespec/BUILDVERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
193
1+
194

0 commit comments

Comments
 (0)