93 lines
3 KiB
YAML
93 lines
3 KiB
YAML
name: Publish Toolkit
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
toolkit:
|
|
description: 'The directory of the toolkit to publish'
|
|
required: true
|
|
|
|
jobs:
|
|
release-and-publish:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: write
|
|
packages: write
|
|
|
|
steps:
|
|
- name: Set toolkit input
|
|
id: set-toolkit
|
|
run: |
|
|
if [ "${{ github.event_name }}" = "push" ]; then
|
|
# Extract toolkit name from changed files
|
|
TOOLKIT=this_is_for_testing
|
|
echo "toolkit=$TOOLKIT" >> $GITHUB_OUTPUT
|
|
else
|
|
echo "toolkit=${{ inputs.toolkit }}" >> $GITHUB_OUTPUT
|
|
fi
|
|
|
|
- name: Checkout code
|
|
uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Install Poetry
|
|
uses: snok/install-poetry@v1
|
|
with:
|
|
version: 1.8.5
|
|
|
|
- uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.12'
|
|
cache: 'pip'
|
|
|
|
- name: Test Toolkit
|
|
id: Test_Toolkit
|
|
working-directory: toolkits/${{ steps.set-toolkit.outputs.toolkit }}
|
|
run: |
|
|
make install
|
|
make check
|
|
make test
|
|
|
|
- name: Publish Toolkit
|
|
# Publish the toolkit to PyPI if the version is not already published
|
|
id: Publish_Toolkit
|
|
working-directory: toolkits/${{ steps.set-toolkit.outputs.toolkit }}
|
|
run: |
|
|
poetry build
|
|
# Extract version from pyproject.toml using poetry and save it
|
|
VERSION=$(poetry version -s)
|
|
echo "version=$VERSION" >> $GITHUB_OUTPUT
|
|
poetry config pypi-token.pypi ${{ secrets.PYPI_TOKEN }}
|
|
|
|
# Run the publish command in an if-statement to capture output and status.
|
|
if PUBLISH_OUTPUT=$(poetry publish --skip-existing 2>&1); then
|
|
PUBLISH_STATUS=0
|
|
else
|
|
PUBLISH_STATUS=$?
|
|
fi
|
|
|
|
# If the output indicates that the version already exists, mark it as a skip.
|
|
if echo "$PUBLISH_OUTPUT" | grep -q "File exists. Skipping"; then
|
|
echo "Version already exists on PyPI. Skipping publish."
|
|
echo "skip_publish=true" >> $GITHUB_OUTPUT
|
|
elif [ $PUBLISH_STATUS -ne 0 ]; then
|
|
echo "Failed to publish package:"
|
|
echo "$PUBLISH_OUTPUT"
|
|
echo "skip_publish=false" >> $GITHUB_OUTPUT
|
|
exit $PUBLISH_STATUS
|
|
else
|
|
echo "skip_publish=false" >> $GITHUB_OUTPUT
|
|
fi
|
|
|
|
- name: Send status to Slack
|
|
if: always() && steps.Publish_Toolkit.outputs.skip_publish != 'true'
|
|
uses: slackapi/slack-github-action@v2.0.0
|
|
with:
|
|
webhook: ${{ secrets.SLACK_WEBHOOK_URL }}
|
|
webhook-type: webhook-trigger
|
|
payload: |
|
|
status: "${{ (steps.Test_Toolkit.outcome == 'failure' || steps.Publish_Toolkit.outcome == 'failure') && 'Failed' || 'Success' }}"
|
|
toolkit: ${{ steps.set-toolkit.outputs.toolkit }}
|
|
version: ${{ steps.Publish_Toolkit.outputs.version }}
|
|
url: "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}"
|