Skip to content

Commit

Permalink
try
Browse files Browse the repository at this point in the history
  • Loading branch information
doregg committed Mar 20, 2024
1 parent bd4f96c commit 2cac04b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/trigger-e2e-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ jobs:
echo "Received test request for @frontegg/angular@${{ inputs.version }}"
echo "From: ${{ inputs.sha }}"
- name: "Test version ${{ inputs.version }} with SHA ${{ inputs.sha == '' || 'default sha' }}"
- name: "Test version ${{ inputs.version }} with SHA ${{ (inputs.sha != '' && inputs.sha) || 'default sha' }}"
run: |
echo "Testing version ${{ inputs.version }} with SHA ${{ inputs.sha }}"
- name: Another test
run: |
cd projects/${{ ((inputs.sha == '' || inputs.sha == '1') && 'example') || 'frontegg-app' }}
cd projects/${{ ((inputs.sha != '' || inputs.sha == '1') && 'example') || 'frontegg-app' }}
ls -la
shell: bash

Expand Down

0 comments on commit 2cac04b

Please sign in to comment.