Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add workflows for simplified publish #993

Merged
merged 2 commits into from
Sep 27, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 50 additions & 0 deletions .github/workflows/prep-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
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@version2

- name: Prep Release
id: prep-release
uses: jupyter-server/jupyter-releaser/.github/actions/prep-release@version2
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
73 changes: 73 additions & 0 deletions .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
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@version2

- name: Populate Release
id: populate-release
uses: jupyter-server/jupyter-releaser/.github/actions/populate-release@version2
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@version2
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