Skip to content

Commit

Permalink
added workflow_dispatch event & updated checkout and setup-java actio…
Browse files Browse the repository at this point in the history
…ns to v4
  • Loading branch information
stijnvanlooy committed Sep 6, 2024
1 parent 1d39562 commit a38ba50
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build_and_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,16 @@ on:
- 'master'
- 'main'
- 'develop'
workflow_dispatch:

jobs:
build_and_test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'adopt'
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,16 @@ on:
- 'master'
- 'main'
- 'develop'

workflow_dispatch:

jobs:
build_test_release:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'adopt'
Expand Down

0 comments on commit a38ba50

Please sign in to comment.