honeybee_schema_dotnet_release #142
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: repository_dispatch | |
jobs: | |
updateImage: | |
name: "Check Event" | |
runs-on: ubuntu-latest | |
if: github.event.action == 'dragonfly_schema_release' | |
steps: | |
- name: "Checkout Master Branch" | |
uses: actions/checkout@v2 | |
with: | |
ref: refs/heads/master | |
token: ${{ secrets.GH_TOKEN }} | |
- name: Set up npm | |
uses: actions/setup-node@v1 | |
with: | |
node-version: '12.x' | |
- uses: actions/setup-python@v1 | |
with: | |
python-version: '3.x' | |
- name: Set up Java | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 1.8 | |
java-package: jdk # (jre, jdk, or jdk+fx) - defaults to jdk | |
architecture: x64 # (x64 or x86) - defaults to x64 | |
- name: "Install OpenAPI-generator" | |
run: | | |
npm install @openapitools/[email protected] -g | |
- name: "Run Update Script" | |
env: | |
VERSION: ${{ github.event.client_payload.version }} | |
run: | | |
bash download.sh $VERSION | |
bash generate.sh | |
- name: "Set Commit Message" | |
id: vars | |
env: | |
VERSION: ${{ github.event.client_payload.version }} | |
run: | | |
echo ::set-output name=commit_message::"Update Schema to $VERSION" | |
- name: "Commit and Push Changes" | |
id: push | |
env: | |
COMMIT_MESSAGE: ${{ steps.vars.outputs.commit_message }} | |
run: | | |
git config --global user.name 'ladybugbot' | |
git config --global user.email '[email protected]' | |
git add . | |
git commit -m "$COMMIT_MESSAGE" | |
git push | |
bump_honeybee_schema_dotnet: | |
name: "Check Event" | |
runs-on: ubuntu-latest | |
if: github.event.action == 'honeybee_schema_dotnet_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/(Include="HoneybeeSchema" Version=").*(")/Include="HoneybeeSchema" Version="'"$CLEAN_VERSION"'"/' src/DragonflySchema/DragonflySchema.csproj | |
- 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-schema to $VERSION" | |
git push |