honeybee_core_release #477
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-Dispatch | |
on: repository_dispatch | |
jobs: | |
bump_honeybee_core: | |
name: "Check Event" | |
runs-on: ubuntu-latest | |
if: github.event.action == 'honeybee_core_release' | |
steps: | |
- name: "Checkout Master Branch" | |
uses: actions/checkout@v2 | |
with: | |
ref: refs/heads/master | |
token: ${{ secrets.DEPS_UPDATING }} | |
- name: "Run Update Script" | |
env: | |
VERSION: ${{ github.event.client_payload.version }} | |
run: | | |
export CLEAN_VERSION=$(echo $VERSION | sed 's/v//g') | |
sed -i --regexp-extended 's/(honeybee-core==).*/honeybee-core=='"$CLEAN_VERSION"'/' requirements.txt | |
- name: "Commit and Push Changes" | |
id: push | |
env: | |
VERSION: ${{ github.event.client_payload.version }} | |
run: | | |
git config --global user.name 'ladybugbot' | |
git config --global user.email '[email protected]' | |
git add . | |
git commit -m "fix(deps): Bump honeybee-core to $VERSION" | |
git push | |
bump_honeybee_standards: | |
name: "Check Event" | |
runs-on: ubuntu-latest | |
if: github.event.action == 'honeybee_standards_release' | |
steps: | |
- name: "Checkout Master Branch" | |
uses: actions/checkout@v2 | |
with: | |
ref: refs/heads/master | |
token: ${{ secrets.DEPS_UPDATING }} | |
- name: "Run Update Script" | |
env: | |
VERSION: ${{ github.event.client_payload.version }} | |
run: | | |
export CLEAN_VERSION=$(echo $VERSION | sed 's/v//g') | |
sed -i --regexp-extended 's/(honeybee-standards==).*/honeybee-standards=='"$CLEAN_VERSION"'/' requirements.txt | |
- name: "Commit and Push Changes" | |
id: push | |
env: | |
VERSION: ${{ github.event.client_payload.version }} | |
run: | | |
git config --global user.name 'ladybugbot' | |
git config --global user.email '[email protected]' | |
git add . | |
git commit -m "fix(deps): Bump honeybee-standards to $VERSION" | |
git push | |
bump_honeybee_energy_standards: | |
name: "Check Event" | |
runs-on: ubuntu-latest | |
if: github.event.action == 'honeybee_energy_standards_release' | |
steps: | |
- name: "Checkout Master Branch" | |
uses: actions/checkout@v2 | |
with: | |
ref: refs/heads/master | |
token: ${{ secrets.DEPS_UPDATING }} | |
- name: "Run Update Script" | |
env: | |
VERSION: ${{ github.event.client_payload.version }} | |
run: | | |
export CLEAN_VERSION=$(echo $VERSION | sed 's/v//g') | |
sed -i --regexp-extended 's/(honeybee-energy-standards==).*/honeybee-energy-standards=='"$CLEAN_VERSION"'/' standards-requirements.txt | |
- name: "Commit and Push Changes" | |
id: push | |
env: | |
VERSION: ${{ github.event.client_payload.version }} | |
run: | | |
git config --global user.name 'ladybugbot' | |
git config --global user.email '[email protected]' | |
git add . | |
git commit -m "fix(deps): Bump honeybee-standards to $VERSION" | |
git push | |
bump_honeybee_openstudio_gem: | |
name: "Check Event" | |
runs-on: ubuntu-latest | |
if: github.event.action == 'honeybee_openstudio_gem_release' | |
steps: | |
- name: "Checkout Master Branch" | |
uses: actions/checkout@v2 | |
with: | |
ref: refs/heads/master | |
token: ${{ secrets.DEPS_UPDATING }} | |
- name: "Run Update Script" | |
env: | |
VERSION: ${{ github.event.client_payload.version }} | |
run: | | |
export CLEAN_VERSION=$(echo $VERSION | sed 's/v//g') | |
sed -i --regexp-extended 's/(export HONEYBEE_OPENSTUDIO_GEM_VERSION=").*"/export HONEYBEE_OPENSTUDIO_GEM_VERSION="'"$CLEAN_VERSION"'"/' build_image.sh | |
sed -i --regexp-extended 's/(HONEYBEE_OPENSTUDIO_GEM_VERSION: ").*"/HONEYBEE_OPENSTUDIO_GEM_VERSION: "'"$CLEAN_VERSION"'"/' .github/workflows/ci.yaml | |
- name: "Commit and Push Changes" | |
id: push | |
env: | |
VERSION: ${{ github.event.client_payload.version }} | |
run: | | |
git config --global user.name 'ladybugbot' | |
git config --global user.email '[email protected]' | |
git add . | |
git commit -m "build(deps): Bump honeybee-openstudio-gem to $VERSION" | |
git push |