add localhost env #114
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: Set New Version Tag | |
on: | |
pull_request: | |
branches: | |
- master | |
types: [closed] | |
paths: | |
- 'protos/**' | |
- '**/*python*' | |
- '**/python/**' | |
- 'stubs/**' | |
jobs: | |
set-version-tag: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v2 | |
- name: Set Version Tag | |
run: | | |
make set_new_version_tag | |
trigger-build-CIs: | |
needs: set-version-tag | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v2 | |
- name: Send tag-created event | |
run: | | |
git fetch --tags | |
export LAST_TAG=$(git tag --sort=-version:refname --list '[0-9]*.[0-9]*.[0-9]*' | head -n1) | |
echo "LAST_TAG=$LAST_TAG" | |
curl -L \ | |
-X POST \ | |
-H "Accept: application/vnd.github+json" \ | |
-H "Authorization: Bearer ${{ github.token }}" \ | |
-H "X-GitHub-Api-Version: 2022-11-28" \ | |
https://api.github.com/repos/ECTLab/AIaaS-gRPC-protos/dispatches \ | |
-d '{"event_type":"tag-created","client_payload":{"tag_name":"'"$LAST_TAG"'"}}' |