Skip to content

Commit 2ee6168

Browse files
committed
Release 0.3.2
1 parent f7c22e7 commit 2ee6168

2 files changed

Lines changed: 16 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,15 @@ on:
44
push:
55
branches: [ ]
66

7+
permissions:
8+
contents: write
9+
710
jobs:
811
build-linux:
912
runs-on: ubuntu-latest
1013

1114
steps:
12-
- uses: actions/checkout@v3
15+
- uses: actions/checkout@v4
1316

1417
- name: Install dependencies
1518
run: sudo apt-get update && sudo apt-get install -y meson ninja-build
@@ -32,7 +35,7 @@ jobs:
3235
runs-on: macos-latest
3336

3437
steps:
35-
- uses: actions/checkout@v3
38+
- uses: actions/checkout@v4
3639

3740
- name: Install dependencies
3841
run: brew install meson ninja
@@ -52,7 +55,7 @@ jobs:
5255
runs-on: windows-latest
5356

5457
steps:
55-
- uses: actions/checkout@v3
58+
- uses: actions/checkout@v4
5659

5760
- name: Install dependencies
5861
run: |
@@ -146,6 +149,15 @@ jobs:
146149
with:
147150
path: dist/artifacts
148151

152+
- name: Delete existing assets
153+
uses: dev-drprasad/delete-asset@v1
154+
with:
155+
github_token: ${{ secrets.GITHUB_TOKEN }}
156+
tag: ${{ needs.check_release.outputs.tag_name }}
157+
assets: |
158+
otezip
159+
otezip.exe
160+
149161
- name: Create GitHub release
150162
uses: softprops/action-gh-release@v2.3.2
151163
with:

src/include/config.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
#define OTEZIP_VERSION_MAJOR 0
1212
#define OTEZIP_VERSION_MINOR 3
13-
#define OTEZIP_VERSION_PATCH 1
13+
#define OTEZIP_VERSION_PATCH 2
1414

1515
#define OTEZIP_STRINGIFY(x) #x
1616
#define OTEZIP_TOSTRING(x) OTEZIP_STRINGIFY(x)

0 commit comments

Comments
 (0)