From 5ea41abb82e7989f099b9d1f0fc144d606e151dd Mon Sep 17 00:00:00 2001 From: John McBride Date: Fri, 1 Sep 2023 13:56:49 -0600 Subject: [PATCH] fix: Fix for semantic-release Missed force push before merge to capture env vars Signed-off-by: John McBride --- .github/workflows/build-image.yaml | 2 +- .github/workflows/release.yaml | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-image.yaml b/.github/workflows/build-image.yaml index 5ecc775..d1cec34 100644 --- a/.github/workflows/build-image.yaml +++ b/.github/workflows/build-image.yaml @@ -31,7 +31,7 @@ jobs: registry: ghcr.io username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - + - name: Cross build run: | #!/usr/bin/env bash diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index fd61d47..c3ea375 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -11,8 +11,11 @@ jobs: release: name: Semantic release runs-on: ubuntu-latest + permissions: + contents: write timeout-minutes: 10 steps: + - name: "☁️ Checkout repository" uses: actions/checkout@v3 with: @@ -22,4 +25,6 @@ jobs: id: semantic-release env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + SKIP_NPM_PUBLISH: true + SKIP_DOCKER_PUBLISH: true uses: open-sauced/release@v2