Skip to content

Commit ece9138

Browse files
Fix release workflow and set zumble as entrypoint instead
1 parent 25b8d60 commit ece9138

File tree

2 files changed

+4
-12
lines changed

2 files changed

+4
-12
lines changed

.github/workflows/publish-binaries.yaml

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,8 @@
1-
name: Create release and publish binaries
1+
name: Publish binaries
22
on:
3-
push:
4-
tags:
5-
- 'v*'
3+
release:
4+
types: [published]
65
jobs:
7-
create_release:
8-
runs-on: ubuntu-latest
9-
permissions:
10-
contents: write
11-
steps:
12-
- uses: actions/checkout@v4
13-
- uses: ncipollo/release-action@v1
146
publish_binaries:
157
needs: create_release
168
name: release ${{ matrix.target }}

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ EXPOSE 8080/tcp
2828

2929
ENV RUST_LOG=info
3030

31-
CMD ["/zumble"]
31+
ENTRYPOINT ["/zumble"]

0 commit comments

Comments
 (0)