-
Notifications
You must be signed in to change notification settings - Fork 385
Make the releases automatic #5269
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
GarethCabournDavies
wants to merge
19
commits into
gwastro:master
Choose a base branch
from
GarethCabournDavies:release_strategy
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
4248dcc
Make the releases automatic
GarethCabournDavies cc7c4e3
Update release instructions
GarethCabournDavies 2415dd9
Update .github/workflows/distribution.yml
GarethCabournDavies d7b62d9
Update .github/actions/update-version/action.yml
GarethCabournDavies 8ac6db1
use startsWith(github.ref, 'refs/tags') consistently
GarethCabournDavies 66caf76
check if the release is from default branch, then bump development ve…
GarethCabournDavies 0396bfe
(safety) Check if the next version is the one already in the repository
GarethCabournDavies 2d22593
versioning match to PEP440
GarethCabournDavies e0c68bf
Float64 cast in map pixels sum (#5271)
pracchia 79cc894
Change timeseries, frequencyseries epoch to be float64 rather than li…
GarethCabournDavies 6a5a42d
I'm not sure that the version info is needed for the docker and CVMFS…
GarethCabournDavies db37214
try this other method for bumping the development version number
GarethCabournDavies e62088c
fixes to make docker build work
GarethCabournDavies e9a1fb6
Fix bump
GarethCabournDavies a949735
try to get docker build working
GarethCabournDavies eafaa4c
try this
GarethCabournDavies 6bbb865
bump tp development version needs a permission
GarethCabournDavies c4a4434
Merge branch 'gwastro:master' into release_strategy
GarethCabournDavies d9b1a46
Merge branch 'gwastro:master' into release_strategy
GarethCabournDavies File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,30 @@ | ||
| name: Update Version in setup.py | ||
| description: "Updates release flag and version string in setup.py." | ||
|
|
||
| inputs: | ||
| version: | ||
| description: 'The version string to set.' | ||
| required: true | ||
| release: | ||
| description: 'The boolean state for the release flag (true/false).' | ||
| required: true | ||
|
|
||
| runs: | ||
| using: "composite" | ||
| steps: | ||
| - name: Update setup.py | ||
| shell: bash | ||
| run: | | ||
| # Convert release input to Python boolean (True/False) | ||
| RELEASE_BOOL=$(echo "${{ inputs.release }}" | awk '{print toupper(substr($0,1,1))tolower(substr($0,2))}') | ||
| python3 -c " | ||
| import sys, re | ||
| version = sys.argv[1] | ||
| release_flag = sys.argv[2] | ||
| with open('setup.py', 'r') as f: | ||
| content = f.read() | ||
| content = re.sub(r'^release = .*', f'release = {release_flag}', content, flags=re.MULTILINE) | ||
| content = re.sub(r'^version = .*', f\"version = '{version}'\", content, flags=re.MULTILINE) | ||
| with open('setup.py', 'w') as f: | ||
| f.write(content) | ||
| " "${{ inputs.version }}" "$RELEASE_BOOL" | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.