From 6c8c5d18e90502ff3fb8ba33a218446963d2aa71 Mon Sep 17 00:00:00 2001 From: sigma67 Date: Tue, 9 Jul 2024 08:04:35 +0200 Subject: [PATCH] delete test workflow --- .github/workflows/test-release.yml | 43 ------------------------------ 1 file changed, 43 deletions(-) delete mode 100644 .github/workflows/test-release.yml diff --git a/.github/workflows/test-release.yml b/.github/workflows/test-release.yml deleted file mode 100644 index e54c234b23..0000000000 --- a/.github/workflows/test-release.yml +++ /dev/null @@ -1,43 +0,0 @@ -### DO NOT MERGE -### tests build of pdm with pdm-build-locked - -name: Release - -on: - pull_request: - branches: - - main - -jobs: - release-pypi: - name: release-pypi - runs-on: ubuntu-latest - permissions: - id-token: write - contents: write - - steps: - - uses: actions/checkout@v4 - - - uses: actions/setup-python@v5 - with: - python-version: "3.11" - cache: pip - - - name: Check prerelease - id: check_version - run: | - if [[ "${{ github.ref }}" =~ ^refs/tags/[0-9.]+$ ]]; then - echo "PRERELEASE=false" >> $GITHUB_OUTPUT - else - echo "PRERELEASE=true" >> $GITHUB_OUTPUT - fi - - - name: Build artifacts - run: | - pipx run build - - - name: Test Build - run: | - python -m pip install "pdm[locked] @ file://$(ls ${GITHUB_WORKSPACE}/dist/*.whl)" - pdm --help