From 857dcc48bbdad7b4cdea9d772a2a0301cba33825 Mon Sep 17 00:00:00 2001 From: Klaas Schoute Date: Mon, 28 Oct 2024 23:32:00 +0100 Subject: [PATCH] Remove unnecessary environment variable for release URL in build workflow --- .github/workflows/build.yaml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index ed9fc65..e4c228d 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -15,9 +15,6 @@ concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} cancel-in-progress: true -env: - RELEASE_URL: ${{ github.server_url }}/${{ github.repository }}/releases/latest - jobs: build: name: Build firmware @@ -27,7 +24,7 @@ jobs: esphome/onju-voice.yaml esphome/onju-voice-microwakeword.yaml release-summary: "Check the release notes for more information." - release-url: ${{ env.RELEASE_URL }} + release-url: ${{ github.server_url }}/${{ github.repository }}/releases/latest consolidate: name: Consolidate firmwares 🚀