Skip to content

Commit

Permalink
build.yml: Fix debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
abraxa committed Aug 13, 2024
1 parent f4f83be commit 63fe00f
Showing 1 changed file with 15 additions and 13 deletions.
28 changes: 15 additions & 13 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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
Expand All @@ -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

Expand All @@ -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
Expand All @@ -622,6 +612,7 @@ jobs:
draft: false
fail_on_unmatched_files: true


continuous_release_all:
name: Create continuous release and add artifacts to it

Expand All @@ -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"

0 comments on commit 63fe00f

Please sign in to comment.