Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kosloot committed Aug 30, 2024
1 parent 52d19bd commit c3b813e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/timblserver.yml
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ jobs:
run: ./configure
continue-on-error: true
- name: get status configure
if: ${{ steps.configure.outcome != 'success' }}
if: ${{ env.action_status == '' && steps.configure.outcome != 'success' }}
run: |
echo "action_status=configure" >> $GITHUB_ENV
cat config.log
Expand All @@ -145,7 +145,7 @@ jobs:
run: make
continue-on-error: true
- name: get status make
if: ${{ steps.make.outcome != 'success' }}
if: ${{ env.action_status == '' && steps.make.outcome != 'success' }}
run: echo "action_status=make" >> $GITHUB_ENV
- name: install
id: install
Expand Down

0 comments on commit c3b813e

Please sign in to comment.