Skip to content

Commit c38ae69

Browse files
fix release artifact upload
1 parent 5c3d1b9 commit c38ae69

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

.github/workflows/make-releases.yml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -105,10 +105,9 @@ jobs:
105105
with:
106106
if-no-files-found: error
107107
name: ${{steps.meta.outputs.filename}}
108-
path: ${{steps.meta.outputs.filename}}
109108

110-
update_releases_page:
111-
name: Upload Release
109+
release:
110+
name: Create/Update Release
112111
needs: build
113112
runs-on: ubuntu-latest
114113
permissions:
@@ -120,25 +119,25 @@ jobs:
120119
run: |
121120
echo "date_now=$(date --rfc-3339=seconds)" >> "${GITHUB_OUTPUT}"
122121
123-
- name: Download Build Artifacts from Previous Jobs
122+
- name: Download Build Artifacts
124123
uses: actions/download-artifact@v4
125124
with:
126125
path: artifacts
127126

128127
- name: Upload Builds to Release
129128
uses: ncipollo/release-action@v1
130129
with:
131-
allowUpdates: true
132-
artifactErrorsFailBuild: true
133-
artifacts: artifacts/*/*
130+
name: 'Development Build: ${{ github.ref_name }}@${{ github.sha }}'
134131
body: |
135132
> [!WARNING]
136133
> This is an automatically generated pre-release version of the module, which includes the latest master branch changes.
137134
> Please report any bugs you find.
138135
139136
- Build Date: `${{ steps.vars.outputs.date_now }}`
140137
- Commit: ${{ github.sha }}
141-
name: 'Development build: ${{ github.ref_name }}@${{ github.sha }}'
142138
prerelease: true
139+
allowUpdates: true
143140
removeArtifacts: true
141+
artifactErrorsFailBuild: true
142+
artifacts: artifacts/*
144143
tag: dev-build

0 commit comments

Comments
 (0)