Skip to content

Commit

Permalink
fix: enable semantic release (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
mdtanker authored Nov 22, 2023
1 parent 5b0b9f3 commit b318687
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
28 changes: 14 additions & 14 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,22 +12,22 @@ on:

jobs:
# job to determine appropriate version number, update changelog, and create a release commit
# release:
# runs-on: ubuntu-latest
# concurrency: release
# permissions:
# id-token: write
# contents: write
release:
runs-on: ubuntu-latest
concurrency: release
permissions:
id-token: write
contents: write

# steps:
# - uses: actions/checkout@v3
# with:
# fetch-depth: 0
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0

# - name: Python Semantic Release
# uses: python-semantic-release/python-semantic-release@master
# with:
# github_token: ${{ secrets.GITHUB_TOKEN }}
- name: Python Semantic Release
uses: python-semantic-release/python-semantic-release@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}

# Always build & lint package.
build-package:
Expand Down
2 changes: 1 addition & 1 deletion src/invert4geom/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@

from __future__ import annotations

__version__ = "0.1.0"
__version__ = "0.1.5"

0 comments on commit b318687

Please sign in to comment.