File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -239,38 +239,5 @@ jobs:
239239 name : windows-x86_64
240240 path : c2pool-*-windows-x86_64.zip*
241241
242- # ════════════════════════════════════════════════════════════════════════════
243- # Release — collect artifacts and publish GitHub Release
244- # ════════════════════════════════════════════════════════════════════════════
245- release :
246- name : Publish Release
247- needs : [linux, macos, windows]
248- if : startsWith(github.ref, 'refs/tags/v')
249- runs-on : ubuntu-latest
250- permissions :
251- contents : write
252- steps :
253- - uses : actions/checkout@v6
254-
255- - name : Download all artifacts
256- uses : actions/download-artifact@v7
257- with :
258- path : artifacts
259-
260- - name : Create SHA256SUMS
261- run : |
262- cd artifacts
263- find . -name '*.tar.gz' -o -name '*.zip' | sort | while read f; do
264- sha256sum "$f" | sed 's| \./[^/]*/| |'
265- done > ../SHA256SUMS
266- cat ../SHA256SUMS
267-
268- - name : Create GitHub Release
269- uses : softprops/action-gh-release@v2
270- with :
271- draft : true
272- generate_release_notes : true
273- files : |
274- artifacts/**/*.tar.gz
275- artifacts/**/*.zip
276- SHA256SUMS
242+ # Releases are built and published manually (not via CI).
243+ # See installer/ for packaging scripts (DMG, ZIP, Inno Setup).
You can’t perform that action at this time.
0 commit comments