scenarios: add basic test for testing marker disjointness #21
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
env: | |
POETRY_VERSION: "1.6.1" | |
permissions: | |
contents: write # Needed for GH pages updates | |
on: | |
push: | |
tags: | |
- "[0-9]+.[0-9]+.[0-9]+" | |
- "[0-9]+.[0-9]+rc[0-9]+" | |
- "[0-9]+.[0-9]+[ab][0-9]+" | |
jobs: | |
release-package: | |
name: Release to PyPI | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
persist-credentials: false | |
fetch-depth: 0 | |
- name: Set up Python 3.12 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.12" | |
- name: Set up Poetry | |
run: | | |
pip install poetry==${{ env.POETRY_VERSION }} | |
# Note: If build and publish steps are ever separated, the version must | |
# be set before building | |
- name: Publish package | |
env: | |
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_API_TOKEN }} | |
run: | | |
poetry version "${GITHUB_REF#refs/*/}" | |
poetry publish --build | |
release-scenarios: | |
name: Publish scenarios | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python 3.12 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.12" | |
- name: Set up Poetry | |
run: | | |
pip install poetry==${{ env.POETRY_VERSION }} | |
- name: Install packages | |
run: | | |
poetry install --all-extras | |
- name: Publish scenarios to GitHub Pages | |
run: | | |
poetry run packse index build --no-hash scenarios/ | |
git fetch origin gh-pages | |
git branch gh-pages FETCH_HEAD | |
git checkout gh-pages | |
git config user.name "$GITHUB_ACTOR" | |
git config user.email "$GITHUB_ACTOR@users.noreply.github.com" | |
mkdir "${GITHUB_REF#refs/*/}" | |
cp -r index/* "${GITHUB_REF#refs/*/}" | |
git add "${GITHUB_REF#refs/*/}" | |
git commit -m "Publish scenarios for $commit" | |
git push --set-upstream origin gh-pages |