Skip to content

Commit 6281560

Browse files
committed
fix: build with updated version
1 parent 9c4f251 commit 6281560

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/create-release.yaml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
java-version: '21'
6666

6767
- name: Clone BPM
68-
uses: actions/checkout@master
68+
uses: actions/checkout@v5
6969
with:
7070
repository: InseeFr/BPM
7171
path: bpm
@@ -78,7 +78,10 @@ jobs:
7878
7979
- uses: actions/checkout@v5
8080
- name: Build app
81-
run: mvn package --no-transfer-progress
81+
run: |
82+
git fetch origin main
83+
git checkout origin/main
84+
mvn package --no-transfer-progress
8285
8386
- name: Upload app jar
8487
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)