Skip to content

Commit

Permalink
CI(Ubuntu): Use !cancelled() as step condition to allow cancelling
Browse files Browse the repository at this point in the history
  • Loading branch information
echoix committed Jul 25, 2024
1 parent 98569c5 commit 774c7f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ jobs:
echo "$HOME/install/bin" >> $GITHUB_PATH
- name: Print installed versions
if: always()
if: !cancelled()
run: .github/workflows/print_versions.sh

- name: Test executing of the grass command
Expand Down Expand Up @@ -209,7 +209,7 @@ jobs:
export INITIAL_PWD="${PWD}"
coverage html
- name: Make HTML test report available
if: ${{ always() }}
if: ${{ !cancelled() }}
uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b # v4.3.4
with:
name: >-
Expand Down

0 comments on commit 774c7f2

Please sign in to comment.