From aaaf1125341a144b8f3f864d4df02f67471af3af Mon Sep 17 00:00:00 2001 From: Robin Kolk Date: Wed, 20 Oct 2021 19:29:12 +0200 Subject: [PATCH] Switching back to manual versioning --- .github/bumpver.toml | 16 ---------------- .github/workflows/versioning.yaml | 27 --------------------------- 2 files changed, 43 deletions(-) delete mode 100644 .github/bumpver.toml delete mode 100644 .github/workflows/versioning.yaml diff --git a/.github/bumpver.toml b/.github/bumpver.toml deleted file mode 100644 index e6b8bbd..0000000 --- a/.github/bumpver.toml +++ /dev/null @@ -1,16 +0,0 @@ -[bumpver] -current_version = "v2021.10.12" -version_pattern = "vYYYY.MM.DD" -commit_message = "bump version {old_version} -> {new_version}" -commit = false -tag = false -push = false - -[bumpver.file_patterns] -"bumpver.toml" = [ - 'current_version = "{version}"', -] -"../custom_components/miele/manifest.json" = [ - '"version": "{version}",', -] - diff --git a/.github/workflows/versioning.yaml b/.github/workflows/versioning.yaml deleted file mode 100644 index 63f24c1..0000000 --- a/.github/workflows/versioning.yaml +++ /dev/null @@ -1,27 +0,0 @@ -name: versioning -on: - push: - branches: - - master - -jobs: - versioning: - runs-on: ubuntu-latest - steps: - - name: Checking out repo - uses: actions/checkout@v2 - - name: Set up Python - uses: actions/setup-python@v2 - - name: Upgrade pip and install bumpver - run: | - python -m pip install --upgrade pip - pip install bumpver - - name: Bumping version - working-directory: ./.github - run: | - bumpver update - - name: pushing updates - uses: stefanzweifel/git-auto-commit-action@v4 - with: - commit_message: Bump version - commit_user_name: Github Actions Bot \ No newline at end of file