Skip to content

Commit

Permalink
dsvdsvfsdfcsd
Browse files Browse the repository at this point in the history
Signed-off-by: Joas Schilling <[email protected]>
  • Loading branch information
nickvergessen committed Nov 18, 2023
1 parent 9c00c8b commit 65217e0
Showing 1 changed file with 21 additions and 7 deletions.
28 changes: 21 additions & 7 deletions .github/workflows/debugging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,19 +19,33 @@ jobs:

- name: Test contains(fromJSON('["/nextcloud/vue-", "/webrtc-adapter-"]'), steps.branchname.outputs.branch) != true
if: contains(fromJSON('["/nextcloud/vue-", "/webrtc-adapter-"]'), steps.branchname.outputs.branch) != true
run: echo 'contains(fromJSON('["/nextcloud/vue-", "/webrtc-adapter-"]'), steps.branchname.outputs.branch) != true'
continue-on-error: true
run: echo '"/nextcloud/vue-", "/webrtc-adapter-"'

- name: Test contains(fromJSON('["/webrtc-adapter-"]'), steps.branchname.outputs.branch) != true
if: contains(fromJSON('["/nextcloud/vue-", "/webrtc-adapter-"]'), steps.branchname.outputs.branch) != true
run: echo 'contains(fromJSON('["/webrtc-adapter-"]'), steps.branchname.outputs.branch) != true'
if: contains(fromJSON('["/webrtc-adapter-"]'), steps.branchname.outputs.branch) != true
continue-on-error: true
run: echo '"/webrtc-adapter-"'

- name: Test contains(fromJSON('["/nextcloud/vue-"'), steps.branchname.outputs.branch) != true
if: contains(fromJSON('["/nextcloud/vue-", "/webrtc-adapter-"]'), steps.branchname.outputs.branch) != true
run: echo 'contains(fromJSON('["/nextcloud/vue-"'), steps.branchname.outputs.branch) != true'
if: contains(fromJSON('["/nextcloud/vue-"'), steps.branchname.outputs.branch) != true
continue-on-error: true
run: echo '"/nextcloud/vue-"'

- name: Test contains('/nextcloud/vue-', steps.branchname.outputs.branch) != true
if: contains(fromJSON('["/nextcloud/vue-", "/webrtc-adapter-"]'), steps.branchname.outputs.branch) != true
run: echo 'contains('/nextcloud/vue-', steps.branchname.outputs.branch) != true'
if: contains('/nextcloud/vue-', steps.branchname.outputs.branch) != true
continue-on-error: true
run: echo '/nextcloud/vue-'

- name: Test contains('/webrtc-adapter-', steps.branchname.outputs.branch) != true
if: contains('/webrtc-adapter-', steps.branchname.outputs.branch) != true
continue-on-error: true
run: echo '/webrtc-adapter-'

- name: Test contains('/webrtc-adapter-', steps.branchname.outputs.branch) != contains('/nextcloud/vue-', steps.branchname.outputs.branch)
if: contains('/webrtc-adapter-', steps.branchname.outputs.branch) != contains('/nextcloud/vue-', steps.branchname.outputs.branch)
continue-on-error: true
run: echo '/nextcloud/vue- != /webrtc-adapter-'

- run: echo ${{ steps.vars.outputs.branch }}
- name: Test ${{ github.ref }}
Expand Down

0 comments on commit 65217e0

Please sign in to comment.