From a5f040c611f289a754d17417600432cf69c2d01f Mon Sep 17 00:00:00 2001 From: Sergio Moya <1083296+smoya@users.noreply.github.com> Date: Wed, 27 Oct 2021 13:33:34 +0200 Subject: [PATCH] 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 --- .github/workflows/.releaserc | 6 +++--- .github/workflows/release.yml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/.releaserc b/.github/workflows/.releaserc index ac265c3..881afa4 100644 --- a/.github/workflows/.releaserc +++ b/.github/workflows/.releaserc @@ -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 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index cff1197..095269d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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