Add [extras] extras_require with datalad-metalad and add all those extras to [devel] #45
Workflow file for this run
This file contains 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
name: Auto-release on PR merge | |
on: | |
pull_request_target: | |
branches: | |
# Create a release whenever a PR is merged into one of these branches: | |
- master | |
types: | |
- closed | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
# Only run for merged PRs with the "release" label: | |
if: github.event.pull_request.merged == true && contains(github.event.pull_request.labels.*.name, 'release') | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v4 | |
with: | |
# Check out all history so that the previous release tag can be | |
# found: | |
fetch-depth: 0 | |
- name: Prepare release | |
uses: datalad/release-action/release@master | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
pypi-token: ${{ secrets.PYPI_TOKEN }} | |
pre-tag: | | |
pkg="$(python setup.py --name)" | |
printf '__version__ = "%s"\n' "$new_version" > "$pkg"/version.py | |
git commit -m "Update __version__ to $new_version" "$pkg"/version.py | |
# vim:set et sts=2: |