fix(deps): bump pollination-ladybug-comfort from 0.5.5 to 0.5.6 #316
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: CI | |
on: [push] | |
jobs: | |
deploy: | |
name: Deploy to GitHub and PyPI | |
runs-on: ubuntu-latest | |
if: github.ref == 'refs/heads/master' && github.repository_owner == 'pollination' | |
steps: | |
- uses: actions/checkout@v2 | |
- name: set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.7 | |
- name: set up node # we need node for for semantic release | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22.2.0 | |
- name: install python dependencies | |
run: | | |
pip install -r dev-requirements.txt | |
pip install . | |
- name: install semantic-release | |
run: | |
npm install @semantic-release/exec | |
- name: run semantic release | |
id: new_release | |
run: | | |
nextRelease="`npx semantic-release@^23.1.1 --dryRun | grep -oP 'Published release \K.*? ' || true`" | |
npx semantic-release@^23.1.1 | |
echo "::set-output name=tag::$nextRelease" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
PYPI_USERNAME: ${{ secrets.POLLINATION_PYPI_USERNAME }} | |
PYPI_PASSWORD: ${{ secrets.POLLINATION_PYPI_PASSWORD }} | |
outputs: | |
tag: ${{ steps.new_release.outputs.tag }} | |
deploy-to-staging: | |
name: Deploy to Pollination Staging | |
runs-on: ubuntu-latest | |
needs: deploy | |
if: ${{ github.ref == 'refs/heads/master' && github.repository_owner == 'pollination' && contains(needs.deploy.outputs.tag, '.') }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.7 | |
- name: set tag | |
id: set-tag | |
run: | | |
TAG=$(echo "${{ needs.deploy.outputs.tag }}" | sed 's/[[:space:]]//g') | |
echo "::set-output name=tag::$TAG" | |
- name: install python dependencies | |
run: pip install . | |
- name: deploy to staging | |
run: | | |
queenbee | |
pollination dsl push pollination-pmv-comfort-map --tag ${{needs.deploy.outputs.tag}} -e https://api.staging.pollination.cloud -src https://api.staging.pollination.cloud/registries | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
QB_POLLINATION_TOKEN: ${{ secrets.POLLINATION_STAGING_LADYBUGBOT_TOKEN }} | |
- uses: actions/checkout@v2 | |
with: | |
ref: visualization | |
fetch-depth: 0 | |
- name: rebase visualization branch | |
run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "GitHub Actions" | |
git rebase origin/master | |
- name: install python viz dependencies | |
run: pip install .[viz] | |
- name: deploy viz to staging | |
env: | |
TAG: ${{ needs.deploy.outputs.tag }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
QB_POLLINATION_TOKEN: ${{ secrets.POLLINATION_STAGING_LADYBUGBOT_TOKEN }} | |
run: | | |
TAG=$(echo "${TAG:?}-viz" | sed 's/[[:space:]]//g') | |
echo $TAG | |
queenbee | |
pollination dsl push pollination-pmv-comfort-map --tag $TAG -e https://api.staging.pollination.cloud -src https://api.staging.pollination.cloud/registries --push-dependencies | |
- name: install python dependencies for samples | |
run: pip install -r samples/requirements.txt | |
- name: run on staging | |
run: python samples/run_jobs.py | |
env: | |
QB_POLLINATION_TOKEN: ${{ secrets.POLLINATION_STAGING_LADYBUGBOT_TOKEN }} | |
TAG: ${{ steps.set-tag.outputs.tag }} | |
HOST: https://api.staging.pollination.cloud | |
deploy-to-production: | |
name: Deploy to Pollination Production | |
runs-on: ubuntu-latest | |
if: github.ref == 'refs/heads/production' && github.repository_owner == 'pollination' | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.7 | |
- name: Get Job Context | |
id: get-context | |
run: | | |
TAG=$(git describe --tags | sed 's/v//') | |
echo "Releasing tag: ${TAG:?}" | |
echo "::set-output name=tag::$TAG" | |
- name: install python dependencies | |
run: | | |
pip install pollination-pmv-comfort-map | |
pip install -r requirements.txt | |
- name: deploy to production | |
run: | | |
queenbee | |
pollination dsl push pollination-pmv-comfort-map -e https://api.pollination.cloud -src https://api.pollination.cloud/registries --push-dependencies | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
QB_POLLINATION_TOKEN: ${{ secrets.POLLINATION_LADYBUGBOT_TOKEN }} | |
- uses: actions/checkout@v2 | |
with: | |
ref: visualization | |
fetch-depth: 0 | |
- name: rebase visualization branch | |
run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "GitHub Actions" | |
git rebase origin/production | |
- name: install python viz dependencies | |
run: pip install .[viz] | |
- name: deploy viz to production | |
env: | |
TAG: ${{ steps.get-context.outputs.tag }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
QB_POLLINATION_TOKEN: ${{ secrets.POLLINATION_LADYBUGBOT_TOKEN }} | |
run: | | |
TAG=$(echo "${TAG:?}-viz" | sed 's/[[:space:]]//g') | |
echo $TAG | |
queenbee | |
pollination dsl push pollination-pmv-comfort-map --tag $TAG -e https://api.pollination.cloud -src https://api.pollination.cloud/registries --push-dependencies |