From d14c7430fb623c325011e43ea011e5ca9a096046 Mon Sep 17 00:00:00 2001 From: Josh Mock Date: Mon, 25 Sep 2023 10:59:50 -0500 Subject: [PATCH] Drop unified release --- .github/workflows/unified-release.yml | 25 ------------------------- utils/bump-version.py | 5 ----- 2 files changed, 30 deletions(-) delete mode 100644 .github/workflows/unified-release.yml diff --git a/.github/workflows/unified-release.yml b/.github/workflows/unified-release.yml deleted file mode 100644 index d2f7e8442..000000000 --- a/.github/workflows/unified-release.yml +++ /dev/null @@ -1,25 +0,0 @@ -name: Unified Release - -on: - pull_request: - paths-ignore: - - 'README.md' - push: - paths-ignore: - - 'README.md' - branches: - - main - - '[0-9]+.[0-9]+' - - '[0-9]+.x' - -jobs: - assemble: - name: Assemble - runs-on: ubuntu-latest - env: - STACK_VERSION: "8.11-SNAPSHOT" - steps: - - name: Checkout - uses: actions/checkout@v2 - - name: "Assemble ${{ env.STACK_VERSION }}" - run: "./.ci/make.sh assemble ${{ env.STACK_VERSION }}" diff --git a/utils/bump-version.py b/utils/bump-version.py index e91d3bdcb..45ae3714e 100644 --- a/utils/bump-version.py +++ b/utils/bump-version.py @@ -74,11 +74,6 @@ def main(): pattern=r'STACK_VERSION:\s+\- "[0-9]+[0-9\.]*[0-9](?:\-SNAPSHOT)?"', replace=f'STACK_VERSION:\n - "{major_minor_version}.0-SNAPSHOT"', ) - find_and_replace( - path=SOURCE_DIR / ".github/workflows/unified-release.yml", - pattern=r'STACK_VERSION:\s+"[0-9]+[0-9\.]*[0-9](?:\-SNAPSHOT)?"', - replace=f'STACK_VERSION: "{major_minor_version}-SNAPSHOT"', - ) if __name__ == "__main__":