runs-on: ubuntu-latest
if: |
- (endsWith(${{ github.repository }}, 'pulseview') &&
+ (endsWith(github.repository, 'pulseview') &&
((github.event_name == 'push' && github.ref == 'refs/heads/master') ||
(github.event_name == 'workflow_dispatch' && github.ref == 'refs/heads/master'))
needs:
- 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
runs-on: ubuntu-latest
if: |
- (endsWith(${{ github.repository }}, 'sigrok-cli') &&
+ (endsWith(github.repository, 'sigrok-cli') &&
((github.event_name == 'push' && github.ref == 'refs/heads/master') ||
(github.event_name == 'workflow_dispatch' && github.ref == 'refs/heads/master'))
needs:
- 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
runs-on: ubuntu-latest
if: |
- (endsWith(${{ github.repository }}, 'sigrok-build') &&
+ (endsWith(github.repository, 'sigrok-build') &&
(github.event_name == 'push' && github.ref == 'refs/heads/master') ||
(github.event_name == 'workflow_dispatch' && github.ref == 'refs/heads/master')
needs:
- continuous_release_sigrok-cli
steps:
- - name: Dummy
- run: echo
+ - 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"