-
Notifications
You must be signed in to change notification settings - Fork 16
ci: migrating to GitHub actions #98
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
| ;; | ||
| package) | ||
| CHART_VERSION=$(git describe --abbrev=0) | ||
| CHART_VERSION=$(echo ${GITHUB_REF} | cut -d/ -f 3) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Here GITHUB_REF will be tag, right?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
GITHUB_REF will be something like GITHUB_REF=refs/tags/0.5.0 so we are extracting tag from that.
| HELM_GCS_CREDENTIALS: ${{ secrets.HELM_GCS_CREDENTIALS }} | ||
| HELM_GCS_REPOSITORY: ${{ secrets.HELM_GCS_REPOSITORY }} | ||
| run: | | ||
| ./.github/workflows/helm.sh package |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We can explore using our github-action for replacing this. But, we can do a follow-up after migration.
Unit Test Results 47 files 47 suites 45s ⏱️ Results for commit c16397b. |
Description
Migrating to GitHub actions from CircleCI as per hypertrace/hypertrace#144
unlike other repositories, this one contains helm script because of macro repo approach. Using the same script instead of custom actions.
Testing
changes are updates as per discussions and workflow here: hypertrace/query-service#47
Checklist:
Documentation