Skip to content

Commit

Permalink
Removed pull_request trigger and changed concurrency rule
Browse files Browse the repository at this point in the history
  • Loading branch information
clyde-johnston committed Aug 13, 2023
1 parent 3b9a492 commit aedae97
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/test-and-release.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: 'Test and Release Yakut'
on: [ push, pull_request ]
on: push

# Ensures that only one workflow is running at a time - required for duplicate pushes and repushing a PR
# Ensures that only one workflow is running at a time
concurrency:
group: ${{ github.workflow }}
group: ${{ github.workflow_sha }}
cancel-in-progress: true

jobs:
Expand Down Expand Up @@ -35,8 +35,11 @@ jobs:
- name: Install dependencies
run: |
if [ "$RUNNER_OS" == "Linux" ]; then
uname -r
sudo apt-get --ignore-missing update || true
sudo apt-get --ignore-missing upgrade || true
sudo apt-get install -y linux-*-extra-$(uname -r) ncat
sudo apt-get install -y linux-modules-extra-5.15.0-1042-azure
sudo apt-get install -y libsdl2-2.0-0 # For PySDL2. On Windows/macOS the binaries are pulled from PyPI.
sudo apt-get install -y libasound2-dev # For RtMidi.
fi
Expand Down

0 comments on commit aedae97

Please sign in to comment.