Skip to content

Commit

Permalink
Merge pull request #36 from MilagrosMarin/main
Browse files Browse the repository at this point in the history
  • Loading branch information
yambottle authored May 17, 2024
2 parents 44f63b5 + 97e34ca commit e52a233
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 12 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,24 +4,24 @@ on:
jobs:
make_github_release:
uses: datajoint/.github/.github/workflows/make_github_release.yaml@main
pypi_release:
needs: make_github_release
uses: datajoint/.github/.github/workflows/pypi_release.yaml@main
secrets:
TWINE_USERNAME: ${{secrets.TWINE_USERNAME}}
TWINE_PASSWORD: ${{secrets.TWINE_PASSWORD}}
with:
UPLOAD_URL: ${{needs.make_github_release.outputs.release_upload_url}}
# pypi_release:
# needs: make_github_release
# uses: datajoint/.github/.github/workflows/pypi_release.yaml@main
# secrets:
# TWINE_USERNAME: ${{secrets.TWINE_USERNAME}}
# TWINE_PASSWORD: ${{secrets.TWINE_PASSWORD}}
# with:
# UPLOAD_URL: ${{needs.make_github_release.outputs.release_upload_url}}
mkdocs_release:
uses: datajoint/.github/.github/workflows/mkdocs_release.yaml@main
permissions:
permissions:
contents: write
devcontainer-build:
uses: datajoint/.github/.github/workflows/devcontainer-build.yaml@main
devcontainer-publish:
needs:
needs:
- devcontainer-build
uses: datajoint/.github/.github/workflows/devcontainer-publish.yaml@main
secrets:
DOCKERHUB_USERNAME: ${{secrets.DOCKERHUB_USERNAME}}
DOCKERHUB_TOKEN: ${{secrets.DOCKERHUB_TOKEN_FOR_ELEMENTS}}
DOCKERHUB_TOKEN: ${{secrets.DOCKERHUB_TOKEN_FOR_ELEMENTS}}
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
Observes [Semantic Versioning](https://semver.org/spec/v2.0.0.html) standard and
[Keep a Changelog](https://keepachangelog.com/en/1.0.0/) convention.

## [0.2.2] - 2024-05-12

+ Fix - Fix docs by updating `mkdocs`
+ Update - Remove the `pypi_release` from `release.yaml`

## [0.2.1] - 2024-05-12
+ Fix - Links in README
+ Update - README and docs
Expand Down
1 change: 1 addition & 0 deletions docs/mkdocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ plugins:
default_handler: python
handlers:
python:
paths: [../]
options:
members_order: source
group_by_category: false
Expand Down
2 changes: 1 addition & 1 deletion element_facemap/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Package metadata."""

__version__ = "0.2.1"
__version__ = "0.2.2"

0 comments on commit e52a233

Please sign in to comment.