Skip to content

Commit a8caa6e

Browse files
committed
fix(build): update release workflow
1 parent 7210f6d commit a8caa6e

2 files changed

Lines changed: 12 additions & 8 deletions

File tree

.github/workflows/release.yml

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -146,13 +146,6 @@ jobs:
146146
ref: ${{ needs.set-release-version.outputs.HEAD }}
147147
fetch-depth: 0
148148

149-
- name: 'Download all artifacts'
150-
uses: actions/download-artifact@v4
151-
with:
152-
path: artifacts
153-
pattern: artifacts-*
154-
merge-multiple: true
155-
156149
- name: 'Set up Java'
157150
uses: actions/setup-java@v4
158151
with:
@@ -165,6 +158,17 @@ jobs:
165158
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
166159
git config --global user.name "github-actions[bot]"
167160
161+
- name: 'Download all artifacts'
162+
uses: actions/download-artifact@v4
163+
with:
164+
path: artifacts
165+
pattern: artifacts-*
166+
merge-multiple: true
167+
168+
- name: 'Check artifacts'
169+
run: |
170+
ls -l ./artifacts
171+
168172
- name: 'Release with JReleaser'
169173
env:
170174
JRELEASER_BRANCH: ${{ needs.set-release-version.outputs.HEAD }}

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -714,7 +714,7 @@
714714
<groupId>org.jreleaser</groupId>
715715
<artifactId>jreleaser-maven-plugin</artifactId>
716716
<version>${jreleaser-maven-plugin.version}</version>
717-
<inherited>true</inherited>
717+
<inherited>false</inherited>
718718
<configuration>
719719
<jreleaser>
720720
<signing>

0 commit comments

Comments
 (0)