-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #64 from schmidtfa/prepare_release
Add release and publish logic
- Loading branch information
Showing
4 changed files
with
65 additions
and
4 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,9 @@ on: | |
push: | ||
branches: | ||
- main | ||
tags: | ||
- 'v[0-9]+\.[0-9]+\.[0-9]+\.dev[0-9]+' | ||
- 'v[0-9]+\.[0-9]+\.[0-9]+' | ||
pull_request: | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
|
@@ -53,4 +56,60 @@ jobs: | |
cache: true | ||
locked: false | ||
frozen: false | ||
- run: pixi run -e mne check_types | ||
- run: pixi run -e mne check_types | ||
|
||
build: | ||
runs-on: ubuntu-latest | ||
if: ${{ github.ref_type == 'tag' }} | ||
needs: [test, lint, type_check] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: prefix-dev/[email protected] | ||
with: | ||
pixi-version: latest | ||
cache: true | ||
locked: false | ||
frozen: false | ||
- run: pixi run hatch build | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: pyrasa_dist | ||
path: dist/ | ||
|
||
publish_to_testpypi: | ||
runs-on: ubuntu-latest | ||
if: ${{ contains(github.ref, 'dev') }} | ||
needs: [build] | ||
environment: | ||
name: testpypi | ||
url: https://test.pypi.org/p/pyrasa | ||
permissions: | ||
id-token: write | ||
steps: | ||
- name: Download all the dists | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: pyrasa_dist | ||
path: dist/ | ||
- name: Publish distribution 📦 to TestPyPI | ||
uses: pypa/gh-action-pypi-publish@release/v1 | ||
with: | ||
repository-url: https://test.pypi.org/legacy/ | ||
|
||
publish_to_pypi: | ||
runs-on: ubuntu-latest | ||
if: ${{ !contains(github.ref, 'dev') }} | ||
needs: [build] | ||
environment: | ||
name: pypi | ||
url: https://pypi.org/p/pyrasa | ||
permissions: | ||
id-token: write | ||
steps: | ||
- name: Download all the dists | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: pyrasa_dist | ||
path: dist/ | ||
- name: Publish distribution 📦 to TestPyPI | ||
uses: pypa/gh-action-pypi-publish@release/v1 |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
"""Version information for Pyrasa.""" | ||
|
||
__version__ = '0.1.0.dev0' | ||
__version__ = '0.2.1.dev0' |