Skip to content

Commit

Permalink
GA: enable weekly publishing of prereleases
Browse files Browse the repository at this point in the history
  • Loading branch information
pablode committed May 5, 2024
1 parent fbdaa00 commit d80405e
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/deploy-release-weekly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,5 @@ jobs:
with:
version-name: Weekly
release-notes: 'Weekly build of the main branch.'
tag-name: weekly
publish-prerelease: true
12 changes: 11 additions & 1 deletion .github/workflows/deploy-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@ on:
required: false
type: string
default: 'TBD'
tag-name:
required: false
type: string
publish-prerelease:
required: false
default: false
type: boolean

jobs:
build-2405:
Expand Down Expand Up @@ -50,4 +57,7 @@ jobs:
files: |
*.tar.gz
fail_on_unmatched_files: true
draft: true
tag_name: ${{ inputs.tag-name }}
prerelease: ${{ inputs.publish-prerelease }}
draft: ${{ ! inputs.publish-prerelease }}
make_latest: false

0 comments on commit d80405e

Please sign in to comment.