From: Soeren Apel Date: Tue, 13 Aug 2024 19:54:02 +0000 (+0200) Subject: build.yml: Fix debug output X-Git-Url: https://sigrok.org/gitaction?a=commitdiff_plain;h=63fe00f48b1b5580a7fbd4ad95b6e21c9b15472c;p=sigrok-build.git build.yml: Fix debug output --- diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c94ed3b..d0a46f3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -536,6 +536,7 @@ jobs: name: artifact-sigrok-cli-macos path: sigrok-build/ci/macos/sigrok-cli*.dmg + continuous_release_pulseview: name: Create continuous PulseView release and add artifacts to it @@ -552,12 +553,6 @@ jobs: - build_pulseview_macos steps: - - name: Debug output - env: - GH_REPO: ${{ github.repository }} - GH_EVENT_NAME: ${{ github.event_name }} - GH_REF: ${{ github.ref }} - run: echo "$GH_REPO / $GH_EVENT_NAME / $GH_REF" - name: Download AppImage artifacts uses: actions/download-artifact@v3 - name: Download all other artifacts @@ -580,6 +575,7 @@ jobs: draft: false fail_on_unmatched_files: true + continuous_release_sigrok-cli: name: Create continuous sigrok-cli release and add artifacts to it @@ -596,12 +592,6 @@ jobs: - build_sigrok-cli_macos steps: - - name: Debug output - env: - GH_REPO: ${{ github.repository }} - GH_EVENT_NAME: ${{ github.event_name }} - GH_REF: ${{ github.ref }} - run: echo "$GH_REPO / $GH_EVENT_NAME / $GH_REF" - name: Download AppImage artifacts uses: actions/download-artifact@v3 - name: Download all other artifacts @@ -622,6 +612,7 @@ jobs: draft: false fail_on_unmatched_files: true + continuous_release_all: name: Create continuous release and add artifacts to it @@ -636,10 +627,21 @@ jobs: - continuous_release_pulseview - continuous_release_sigrok-cli + steps: + - name: Debug output + run: echo + + + debug_output: + name: Debug output + + runs-on: ubuntu-latest + steps: - name: Debug output env: GH_REPO: ${{ github.repository }} GH_EVENT_NAME: ${{ github.event_name }} GH_REF: ${{ github.ref }} - run: echo "$GH_REPO / $GH_EVENT_NAME / $GH_REF" + run: echo "Repo: $GH_REPO / Event: $GH_EVENT_NAME / Ref: $GH_REF" +