Skip to content

Commit 972c90f

Browse files
committed
remove label check in appimage.yml -- caller is also checking and it's interfering with tests
1 parent 4ae3e23 commit 972c90f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/appimage.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -60,12 +60,12 @@ jobs:
6060
credentials_json: '${{ secrets.GCP_CREDENTIALS }}'
6161

6262
- name: Build and Package (PR)
63-
if: contains(github.event.pull_request.labels.*.name, 'appimage') || contains(github.event.pull_request.labels.*.name, 'appimage-ignore-tests')
63+
if: inputs.release_type == 'pr'
6464
run: |
6565
sudo -Hu testbot bash -lc 'make BUILD_CHANNEL="pr-${{ github.event.pull_request.number }}" appimage'
6666
6767
- name: Upload Files (PR)
68-
if: contains(github.event.pull_request.labels.*.name, 'appimage') || contains(github.event.pull_request.labels.*.name, 'appimage-ignore-tests')
68+
if: inputs.release_type == 'pr'
6969
uses: google-github-actions/[email protected]
7070
with:
7171
headers: "cache-control: no-cache"
@@ -166,7 +166,7 @@ jobs:
166166
name: Output Summary
167167
runs-on: ubuntu-latest
168168
needs: appimage
169-
if: contains(github.event.pull_request.labels.*.name, 'appimage') || contains(github.event.pull_request.labels.*.name, 'appimage-ignore-tests')
169+
if: inputs.release_type == 'pr'
170170
steps:
171171
- name: Display Download Links
172172
run: |

0 commit comments

Comments
 (0)