Skip to content

Commit bebc00b

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

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/make-releases.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -107,8 +107,8 @@ jobs:
107107
name: ${{steps.meta.outputs.filename}}
108108
path: ${{steps.meta.outputs.filename}}
109109

110-
update_releases_page:
111-
name: Upload Release
110+
release:
111+
name: Create/Update Release
112112
needs: build
113113
runs-on: ubuntu-latest
114114
permissions:
@@ -120,25 +120,25 @@ jobs:
120120
run: |
121121
echo "date_now=$(date --rfc-3339=seconds)" >> "${GITHUB_OUTPUT}"
122122
123-
- name: Download Build Artifacts from Previous Jobs
123+
- name: Download Build Artifacts
124124
uses: actions/download-artifact@v4
125125
with:
126126
path: artifacts
127127

128128
- name: Upload Builds to Release
129129
uses: ncipollo/release-action@v1
130130
with:
131-
allowUpdates: true
132-
artifactErrorsFailBuild: true
133-
artifacts: artifacts/*/*
131+
name: 'Development Build: ${{ github.ref_name }}@${{ github.sha }}'
134132
body: |
135133
> [!WARNING]
136134
> This is an automatically generated pre-release version of the module, which includes the latest master branch changes.
137135
> Please report any bugs you find.
138136
139137
- Build Date: `${{ steps.vars.outputs.date_now }}`
140138
- Commit: ${{ github.sha }}
141-
name: 'Development build: ${{ github.ref_name }}@${{ github.sha }}'
142139
prerelease: true
140+
allowUpdates: true
143141
removeArtifacts: true
142+
artifactErrorsFailBuild: true
143+
artifacts: artifacts/*
144144
tag: dev-build

0 commit comments

Comments
 (0)