Skip to content

Commit 60996fa

Browse files
committed
try to fix autoreleaser
1 parent 50ece95 commit 60996fa

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

.github/workflows/dockcross.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
with:
2929
tag_name: ${{ steps.version.outputs.version }}
3030
release_name: ${{ github.ref_name == 'master' && 'Release' || 'DevBuild' }} ${{ steps.version.outputs.version }}
31-
draft: ${{ github.ref_name != 'master' }}
31+
draft: true
3232
prerelease: true
3333
outputs:
3434
upload_url: ${{ steps.create_release.outputs.upload_url }}
@@ -177,9 +177,7 @@ jobs:
177177
asset_content_type: application/zip
178178

179179
finalize_release:
180-
needs:
181-
- build
182-
- create_release
180+
needs: [build, create_release]
183181
runs-on: ubuntu-latest
184182
if: github.ref == 'refs/heads/master' && needs.build.result == 'success'
185183
steps:

main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
#include "shims.h"
4747

4848
const char* NAME = "cliffi";
49-
const char* VERSION = "v1.10.17";
49+
const char* VERSION = "v1.10.18";
5050
const char* BASIC_USAGE_STRING = "<library> <return_typeflag> <function_name> [[-typeflag] <arg>.. [ ... <varargs>..] ]\n";
5151

5252
sigjmp_buf jmpBuffer;

0 commit comments

Comments
 (0)