-
Notifications
You must be signed in to change notification settings - Fork 41
feat: dev and release pipelines #590
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
base: 0.29
Are you sure you want to change the base?
Changes from all commits
8766257
ee98403
493ca70
8c03220
fa8a8bb
7ba12bb
11906e3
976d413
2cf6094
ba0b7af
fc331fd
2324102
4a5bbf1
796a1a6
7ba4271
d0e7388
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -0,0 +1,140 @@ | ||||||
name: "Dev Tag Pipeline" | ||||||
|
||||||
on: | ||||||
workflow_dispatch: | ||||||
inputs: | ||||||
branch: | ||||||
description: The branch to create the dev tag on | ||||||
type: string | ||||||
required: true | ||||||
|
||||||
permissions: | ||||||
contents: write | ||||||
|
||||||
jobs: | ||||||
setup: | ||||||
runs-on: ubuntu-latest | ||||||
|
||||||
outputs: | ||||||
constantsVersion: ${{ steps.versions.outputs.constantsVersion }} | ||||||
constantsVersionXy: ${{ steps.versions.outputs.constantsVersionXy }} | ||||||
setupVersion: ${{ steps.versions.outputs.setupVersion }} | ||||||
setupVersionXy: ${{ steps.versions.outputs.setupVersionXy }} | ||||||
newestVersion: ${{ steps.versions.outputs.newestVersion }} | ||||||
targetBranch: ${{ steps.versions.outputs.targetBranch }} | ||||||
devTag: ${{ steps.versions.outputs.devTag }} | ||||||
releaseTag: ${{ steps.versions.outputs.releaseTag }} | ||||||
|
||||||
|
||||||
steps: | ||||||
- uses: actions/checkout@v4 | ||||||
with: | ||||||
ref: ${{ inputs.branch }} | ||||||
# Need a complete fetch to make the master merge check work | ||||||
fetch-depth: 0 | ||||||
fetch-tags: true | ||||||
token: ${{ secrets.repo_PAT }} | ||||||
|
||||||
|
||||||
- name: Setup git | ||||||
run: | | ||||||
# NOTE: The user email is {user.id}+{user.login}@users.noreply.github.com. | ||||||
# See users API: https://api.github.com/users/github-actions%5Bbot%5D | ||||||
git config user.name "github-actions[bot]" | ||||||
git config user.email "41898282+github-actions[bot]@users.noreply.github.com" | ||||||
|
||||||
git fetch origin master | ||||||
- name: Check if branch needs master merge | ||||||
run: | | ||||||
if [[ $(git log origin/master ^HEAD) != "" ]]; then | ||||||
echo "You need to merge master into this branch." | ||||||
exit 1 | ||||||
fi | ||||||
|
||||||
- name: Populate variables | ||||||
id: versions | ||||||
run: | | ||||||
. ./hooks/populate-hook-constants.sh | ||||||
|
||||||
echo "constantsVersion=$constantsVersion" | tee -a "$GITHUB_OUTPUT" "$GITHUB_ENV" | ||||||
echo "constantsVersionXy=$constantsVersionXy" | tee -a "$GITHUB_OUTPUT" "$GITHUB_ENV" | ||||||
echo "setupVersion=$setupVersion" | tee -a "$GITHUB_OUTPUT" "$GITHUB_ENV" | ||||||
echo "setupVersionXy=$setupVersionXy" | tee -a "$GITHUB_OUTPUT" "$GITHUB_ENV" | ||||||
echo "newestVersion=$newestVersion" | tee -a "$GITHUB_OUTPUT" "$GITHUB_ENV" | ||||||
echo "targetBranch=$targetBranch" | tee -a "$GITHUB_OUTPUT" "$GITHUB_ENV" | ||||||
|
||||||
echo "devTag=dev-v$setupVersion" | tee -a "$GITHUB_OUTPUT" "$GITHUB_ENV" | ||||||
echo "releaseTag=v$setupVersion" | tee -a "$GITHUB_OUTPUT" "$GITHUB_ENV" | ||||||
|
||||||
- name: Check tag and branch correctness | ||||||
run: | | ||||||
if [[ "${{ steps.versions.outputs.setupVersion }}" != ${{ inputs.branch }}* ]] | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The branch input in the condition is missing quotes, which could lead to shell expansion issues if the branch name contains special characters. Consider updating to: if [[ "${{ steps.versions.outputs.setupVersion }}" != "${{ inputs.branch }}"* ]] This ensures proper string comparison regardless of what characters might be in the branch name.
Suggested change
Spotted by Diamond |
||||||
then | ||||||
echo "Adding tag to wrong branch" | ||||||
exit 1 | ||||||
fi | ||||||
|
||||||
if git rev-parse ${{ steps.versions.outputs.releaseTag }} >/dev/null 2>&1 | ||||||
then | ||||||
echo "The released version of this tag already exists." | ||||||
exit 1 | ||||||
fi | ||||||
|
||||||
- name: Delete tag if already tagged | ||||||
run: | | ||||||
git tag --delete ${{ steps.versions.outputs.devTag }} || true | ||||||
git push --delete origin ${{ steps.versions.outputs.devTag }} || true | ||||||
|
||||||
- name: Install dependencies | ||||||
run: make dev-install | ||||||
|
||||||
- name: Build docs | ||||||
run: make build-docs | ||||||
|
||||||
- name: Commit doc changes | ||||||
run: | | ||||||
git add --all | ||||||
git commit --allow-empty -nm "doc: update docs for ${{ steps.versions.outputs.releaseTag }} tag" | ||||||
git push | ||||||
|
||||||
- name: Create and push tag | ||||||
run: | | ||||||
# NOTE: The user email is {user.id}+{user.login}@users.noreply.github.com. | ||||||
# See users API: https://api.github.com/users/github-actions%5Bbot%5D | ||||||
git config user.name "github-actions[bot]" | ||||||
git config user.email "41898282+github-actions[bot]@users.noreply.github.com" | ||||||
|
||||||
git tag ${{ steps.versions.outputs.devTag }} | ||||||
git push --tags --follow-tags | ||||||
|
||||||
mark-dev-tag-as-not-passed: | ||||||
runs-on: ubuntu-latest | ||||||
needs: | ||||||
- setup | ||||||
|
||||||
steps: | ||||||
- uses: actions/checkout@v4 | ||||||
with: | ||||||
ref: ${{ needs.setup.outputs.devTag }} | ||||||
fetch-tags: true | ||||||
|
||||||
- id: versions | ||||||
uses: supertokens/get-supported-versions-action@main | ||||||
with: | ||||||
has-cdi: true | ||||||
has-fdi: true | ||||||
|
||||||
- run: | | ||||||
./hooks/populate-hook-constants.sh | ||||||
|
||||||
curl --fail-with-body -X PUT \ | ||||||
https://api.supertokens.io/0/driver \ | ||||||
-H 'Content-Type: application/json' \ | ||||||
-H 'api-version: 0' \ | ||||||
-d "{ | ||||||
\"password\": \"${{ secrets.SUPERTOKENS_API_KEY }}\", | ||||||
\"version\":\"${{ needs.setup.outputs.setupVersion }}\", | ||||||
\"name\": \"python\", | ||||||
\"frontendDriverInterfaces\": ${{ steps.versions.outputs.fdiVersions }}, | ||||||
\"coreDriverInterfaces\": ${{ steps.versions.outputs.cdiVersions }} | ||||||
}" |
Uh oh!
There was an error while loading. Please reload this page.