Skip to content

Commit

Permalink
Code: Only run one deploy job at the time
Browse files Browse the repository at this point in the history
  • Loading branch information
GoldenGnu committed Apr 28, 2024
1 parent 6ed93e9 commit 96b99a4
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,15 @@ jobs:
runs-on: ${{ matrix.os }}
concurrency:
group: deploy-group
cancel-in-progress: false
strategy:
matrix:
include:
#Java 8 + Remove old build
- os: ubuntu-latest
java: 8
profile: jpackager-java8
name: Java 8
#Linux
- os: ubuntu-latest
java: 17
Expand All @@ -27,11 +33,6 @@ jobs:
java: 17
profile: jpackager-deploy
name: MacOS
#Java 8
- os: ubuntu-latest
java: 8
profile: jpackager-java8
name: Java 8
name: ${{ matrix.name }}
steps:
- name: Checkout
Expand Down

0 comments on commit 96b99a4

Please sign in to comment.