Skip to content

Commit 2aac65d

Browse files
committed
ci: fix gh actions release for windows
1 parent 87aa22d commit 2aac65d

3 files changed

Lines changed: 3 additions & 4 deletions

File tree

.github/workflows/cd.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@ jobs:
5858
name: Create Release
5959
runs-on: ubuntu-24.04
6060
needs: build
61-
if: startsWith(github.ref, 'refs/tags/')
6261
steps:
6362
- name: Download Artifacts
6463
uses: actions/download-artifact@v4

meson.build

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
project(
22
'cpplox',
33
'cpp',
4-
version: '1.0.5',
4+
version: '1.0.6',
55
default_options: [
66
'warning_level=3',
77
'cpp_std=c++20',
88
],
99
)
1010

1111
include_dirs = include_directories(['include', 'thirdparty'])
12-
project_deps = [dependency('fmt')]
12+
project_deps = [dependency('fmt', static: true)]
1313

1414
# Sources used by all binaries
1515
common_sources = files(

src/bin/cpplox.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ int main(int argc, char *argv[])
7575

7676
if (result.count("version"))
7777
{
78-
fmt::println("v1.0.5");
78+
fmt::println("v1.0.6");
7979
exit(0);
8080
}
8181

0 commit comments

Comments
 (0)