diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e25bdf3..40f6267 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,8 +26,6 @@ jobs: steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - uses: actions/checkout@v3 - - uses: waylonwalker/hatch-version-action@v3 + - uses: waylonwalker/hatch-version-action@v1 with: before-command: "test-lint" - env: - GH_TOKEN: ${{ github.token }} diff --git a/CHANGELOG.md b/CHANGELOG.md deleted file mode 100644 index 6dbfe52..0000000 --- a/CHANGELOG.md +++ /dev/null @@ -1,3 +0,0 @@ -## Changelog - -- implemented v3 support to upload realeases diff --git a/hatch_version_action_example/__about__.py b/hatch_version_action_example/__about__.py index cbe0bcd..86934b0 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.1.dev2" +__version__ = "0.1.0.dev10" diff --git a/pyproject.toml b/pyproject.toml index 64259f3..247e013 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -89,4 +89,3 @@ exclude_lines = [ [tool.isort] profile = "black" known_third_party = [] -