@@ -340,38 +340,39 @@ deploy:
340
340
# #branch: master
341
341
# condition: $PACKAGE = YES
342
342
# ----------------------- dpl v1 -------------------------
343
- - provider : releases
344
- token : $GITHUB_TOKEN # Set in the repo settings page as a secure variable
345
- name : $TRAVIS_TAG
346
- skip_cleanup : true
347
- # We can't use
348
- # body: $RELNOTES
349
- # because a bug in v1's backing Ruby code does not allow passing it
350
- # command line option arguments that contain newlines leading to an
351
- # error on Travis when we try.
352
- # See https://github.com/travis-ci/dpl/issues/155.
353
- #
354
- # The obvious workarounds of literal "\n" or "<br />" do not work.
355
- # The text is passed to GitHub but "\n" is shown literally. While "<br />"
356
- # causes a newline in the rendering, the markdown interpreter does not
357
- # recognize it as an actual newline so never changes the format from
358
- # the initial heading format.
359
- #
360
- # Since we can't use either this or v2 to deply the release notes, we've
361
- # rolled our own provider script for the body.
362
- file_glob : true
363
- file :
364
- - $BUILD_DIR/KTX-Software-*-*
365
- draft : true
366
- prerelease : true
367
- on :
368
- tags : true
369
- # branch: master
370
- condition : $PACKAGE = "YES" && $TRAVIS_TAG =~ ^v[0-9].*
343
+ # #### Not working on jammy runners at present. Do everything via our script.
344
+ # - provider: releases
345
+ # token: $GITHUB_TOKEN # Set in the repo settings page as a secure variable
346
+ # name: $TRAVIS_TAG
347
+ # skip_cleanup: true
348
+ # # We can't use
349
+ # #body: $RELNOTES
350
+ # # because a bug in v1's backing Ruby code does not allow passing it
351
+ # # command line option arguments that contain newlines leading to an
352
+ # # error on Travis when we try.
353
+ # # See https://github.com/travis-ci/dpl/issues/155.
354
+ # #
355
+ # # The obvious workarounds of literal "\n" or "<br />" do not work.
356
+ # # The text is passed to GitHub but "\n" is shown literally. While "<br />"
357
+ # # causes a newline in the rendering, the markdown interpreter does not
358
+ # # recognize it as an actual newline so never changes the format from
359
+ # # the initial heading format.
360
+ # #
361
+ # # Since we can't use either this or v2 to deply the release notes, we've
362
+ # # rolled our own provider script for the body.
363
+ # file_glob: true
364
+ # file:
365
+ # - $BUILD_DIR/KTX-Software-*-*
366
+ # draft: true
367
+ # prerelease: true
368
+ # on:
369
+ # tags: true
370
+ # #branch: master
371
+ # condition: $PACKAGE = "YES" && $TRAVIS_TAG =~ ^v[0-9].*
371
372
372
373
- provider : script
373
374
edge : true
374
- script : ruby ci_scripts/github_release.rb -s ${GITHUB_TOKEN} -r ${TRAVIS_REPO_SLUG} -c $REL_DESC_FILE -t ${TRAVIS_TAG} --draft true --prerelease true
375
+ script : ruby ci_scripts/github_release.rb -s ${GITHUB_TOKEN} -r ${TRAVIS_REPO_SLUG} -c $REL_DESC_FILE -t ${TRAVIS_TAG} --overwrite true -- draft true --prerelease true $BUILD_DIR/KTX-Software-*-*
375
376
on :
376
377
tags : true
377
378
# branch: master
0 commit comments