Skip to content
This repository was archived by the owner on Apr 11, 2024. It is now read-only.

Commit a5f040c

Browse files
authored
ci: install missing package and fix wrong binaries path on .releaserc file (#69)
* ci: fix wrong binaries path on .releaserc file * ci: install missing @semantic-release-plus/docker package
1 parent 2ff9bc9 commit a5f040c

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/.releaserc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ plugins:
88
- preset: conventionalcommits
99
- - "@semantic-release/github"
1010
- assets:
11-
- path: ../bin/out/bin/asyncapi-event-gateway.darwin.amd64
11+
- path: ../bin/out/asyncapi-event-gateway.darwin.amd64
1212
label: Binary - Darwin AMD64
13-
- path: ../bin/out/bin/asyncapi-event-gateway.linux.amd64
13+
- path: ../bin/out/asyncapi-event-gateway.linux.amd64
1414
label: Binary - Linux AMD64
15-
- path: ../bin/out/bin/asyncapi-event-gateway.windows.amd64.exe
15+
- path: ../bin/out/asyncapi-event-gateway.windows.amd64.exe
1616
label: Binary - Windows AMD64
1717
- - "@semantic-release-plus/docker"
1818
- name: asyncapi/event-gateway

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ jobs:
4848
with:
4949
node-version: 14
5050
- run: docker build --tag asyncapi/event-gateway .
51-
- name: Add plugin for conventional commits
52-
run: npm install conventional-changelog-conventionalcommits
51+
- name: Add plugin for conventional commits and docker image push
52+
run: npm install conventional-changelog-conventionalcommits @semantic-release-plus/docker
5353
working-directory: ./.github/workflows
5454
- name: Release to GitHub
5555
working-directory: ./.github/workflows

0 commit comments

Comments
 (0)