From 13e51edf8894cfd9b7bde3f8e5d9c25ac589d57d Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Thu, 6 Oct 2022 14:16:39 -0500 Subject: [PATCH] remove publish workflows --- .github/workflows/prep-release.yml | 50 ------------------ .github/workflows/publish-release.yml | 73 --------------------------- 2 files changed, 123 deletions(-) delete mode 100644 .github/workflows/prep-release.yml delete mode 100644 .github/workflows/publish-release.yml diff --git a/.github/workflows/prep-release.yml b/.github/workflows/prep-release.yml deleted file mode 100644 index c224227d3..000000000 --- a/.github/workflows/prep-release.yml +++ /dev/null @@ -1,50 +0,0 @@ -name: "Step 1: Prep Release" -on: - workflow_dispatch: - inputs: - version_spec: - description: "New Version Specifier" - default: "next" - required: false - branch: - description: "The branch to target" - required: false - since: - description: "Use PRs with activity since this date or git reference" - required: false - since_last_stable: - description: "Use PRs with activity since the last stable git tag" - required: false - type: boolean -jobs: - prep_release: - runs-on: ubuntu-latest - strategy: - fail-fast: true - matrix: - python-version: ["3.10"] - steps: - - name: Checkout - uses: actions/checkout@v2 - - - name: Setup - uses: jupyter-server/jupyter-releaser/.github/actions/common@v2 - - - name: Prep Release - id: prep-release - uses: jupyter-server/jupyter-releaser/.github/actions/prep-release@v2 - with: - token: ${{ secrets.ADMIN_GITHUB_TOKEN }} - version_spec: ${{ github.event.inputs.version_spec }} - post_version_spec: ${{ github.event.inputs.post_version_spec }} - target: ${{ github.repository }} - branch: ${{ github.event.inputs.branch }} - since: ${{ github.event.inputs.since }} - since_last_stable: ${{ github.event.inputs.since_last_stable }} - - - name: "** Next Step **" - run: | - echo "Optional): Review Draft Release: ${{ steps.prep-release.outputs.release_url }}" - echo "## Next Step" >> $GITHUB_STEP_SUMMARY - echo "(Optional): Review Draft Release: ${{ steps.prep-release.outputs.release_url }}" >> $GITHUB_STEP_SUMMARY - echo "Run Publish Release Workflow" >> $GITHUB_STEP_SUMMARY diff --git a/.github/workflows/publish-release.yml b/.github/workflows/publish-release.yml deleted file mode 100644 index 06becc6b5..000000000 --- a/.github/workflows/publish-release.yml +++ /dev/null @@ -1,73 +0,0 @@ -name: "Step 2: Publish Release" -on: - workflow_dispatch: - inputs: - branch: - description: "The target branch" - required: false - release_url: - description: "The URL of the draft GitHub release" - required: false - steps_to_skip: - description: "Comma separated list of steps to skip" - required: false - -jobs: - publish_release: - runs-on: ubuntu-latest - strategy: - fail-fast: true - matrix: - python-version: ["3.10"] - steps: - - name: Checkout - uses: actions/checkout@v2 - - - name: Setup - uses: jupyter-server/jupyter-releaser/.github/actions/common@v2 - - - name: Populate Release - id: populate-release - uses: jupyter-server/jupyter-releaser/.github/actions/populate-release@v2 - with: - token: ${{ secrets.ADMIN_GITHUB_TOKEN }} - target: ${{ github.repository }} - branch: ${{ github.event.inputs.branch }} - release_url: ${{ github.event.inputs.release_url }} - steps_to_skip: ${{ github.event.inputs.steps_to_skip }} - - - name: Finalize Release - id: finalize-release - env: - PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }} - TWINE_USERNAME: __token__ - uses: jupyter-server/jupyter-releaser/.github/actions/finalize-release@v2 - with: - token: ${{ secrets.ADMIN_GITHUB_TOKEN }} - target: ${{ github.repository }} - release_url: ${{ steps.populate-release.outputs.release_url }} - - - name: "** Next Step **" - if: ${{ success() }} - run: | - echo "Verify the final release" - echo ${{ steps.finalize-release.outputs.release_url }} - echo "## Next Step" >> $GITHUB_STEP_SUMMARY - echo "Verify the final release" >> $GITHUB_STEP_SUMMARY - echo ${{ steps.finalize-release.outputs.release_url }} >> $GITHUB_STEP_SUMMARY - if [ ! -z "${{ steps.finalize-release.outputs.pr_url }}" ]; then - echo "Merge the forwardport PR" - echo ${{ steps.finalize-release.outputs.pr_url }} - echo "Merge the forwardport PR" >> $GITHUB_STEP_SUMMARY - echo ${{ steps.finalize-release.outputs.pr_url }} >> $GITHUB_STEP_SUMMARY - fi - - - name: "** Failure Message **" - if: ${{ failure() }} - run: | - echo "Failed to Publish the Draft Release Url:" - echo ${{ steps.populate-release.outputs.release_url }} - echo "## Failure Message" >> $GITHUB_STEP_SUMMARY - echo ":x: Failed to Publish the Draft Release Url:" >> $GITHUB_STEP_SUMMARY - echo ${{ steps.populate-release.outputs.release_url }} >> $GITHUB_STEP_SUMMARY - echo "Fix credentials and run 'Publish Release' workflow again" >> $GITHUB_STEP_SUMMARY