diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 40f6267..e25bdf3 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -6,7 +6,7 @@ name: Use hatch-version-action on: # Triggers the workflow on push or pull request events but only for the "main" branch push: - branches: [ "*" ] + branches: ["*"] # Allows you to run this workflow manually from the Actions tab workflow_dispatch: @@ -26,6 +26,8 @@ jobs: steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - uses: actions/checkout@v3 - - uses: waylonwalker/hatch-version-action@v1 + - uses: waylonwalker/hatch-version-action@v3 with: before-command: "test-lint" + env: + GH_TOKEN: ${{ github.token }} diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..6dbfe52 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,3 @@ +## Changelog + +- implemented v3 support to upload realeases diff --git a/hatch_version_action_example/__about__.py b/hatch_version_action_example/__about__.py index 86934b0..cbe0bcd 100644 --- a/hatch_version_action_example/__about__.py +++ b/hatch_version_action_example/__about__.py @@ -1,4 +1,4 @@ # SPDX-FileCopyrightText: 2022-present Waylon S. Walker # # SPDX-License-Identifier: MIT -__version__ = "0.1.0.dev10" +__version__ = "0.1.1.dev2" diff --git a/pyproject.toml b/pyproject.toml index 247e013..64259f3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -89,3 +89,4 @@ exclude_lines = [ [tool.isort] profile = "black" known_third_party = [] +