From: Michael Brown Date: Wed, 4 Feb 2026 15:10:23 +0000 (+0000) Subject: [ci] Show rolling release publication URL X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=aa06a76eb854c092dd35a53a161b0bf3c179bb07;p=thirdparty%2Fipxe.git [ci] Show rolling release publication URL Construct and show the URL for the workflow runs that are triggered to publish the rolling release binaries. Signed-off-by: Michael Brown --- diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9736ebe7d..c4f5315e9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -227,6 +227,13 @@ jobs: github.event_name == 'push' && github.ref == 'refs/heads/master' && vars.PAGES_REPO_NAME + env: + workflow_url: >- + ${{ github.server_url }}/${{ vars.PAGES_REPO_OWNER }}/${{ '' + }}${{ vars.PAGES_REPO_NAME }}/actions/workflows/build.yml + environment: + name: publish + url: ${{ env.workflow_url }} steps: - name: Get token @@ -244,3 +251,4 @@ jobs: GH_TOKEN: ${{ steps.token.outputs.token }} run: | gh workflow run build.yml -f run_id=${{ github.run_id }} + echo "Results at ${{ env.workflow_url }}"