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

ci: install missing package and fix wrong binaries path on .releaserc file #69

Merged
merged 2 commits into from
Oct 27, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/.releaserc
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ plugins:
- preset: conventionalcommits
- - "@semantic-release/github"
- assets:
- path: ../bin/out/bin/asyncapi-event-gateway.darwin.amd64
- path: ../bin/out/asyncapi-event-gateway.darwin.amd64
label: Binary - Darwin AMD64
- path: ../bin/out/bin/asyncapi-event-gateway.linux.amd64
- path: ../bin/out/asyncapi-event-gateway.linux.amd64
label: Binary - Linux AMD64
- path: ../bin/out/bin/asyncapi-event-gateway.windows.amd64.exe
- path: ../bin/out/asyncapi-event-gateway.windows.amd64.exe
label: Binary - Windows AMD64
- - "@semantic-release-plus/docker"
- name: asyncapi/event-gateway
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ jobs:
with:
node-version: 14
- run: docker build --tag asyncapi/event-gateway .
- name: Add plugin for conventional commits
run: npm install conventional-changelog-conventionalcommits
- name: Add plugin for conventional commits and docker image push
run: npm install conventional-changelog-conventionalcommits @semantic-release-plus/docker
working-directory: ./.github/workflows
- name: Release to GitHub
working-directory: ./.github/workflows
Expand Down