-
-
Notifications
You must be signed in to change notification settings - Fork 1
infra: migrate to uv #84
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
Merged
Merged
Changes from all commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
896c4ab
infra: migrate to uv
JacobCoffee 323cee3
infra: migrate to uv
JacobCoffee 9b16ed9
ci: remove extra from template
JacobCoffee caf3e2e
ci: add changelog genny
JacobCoffee 2e4f84a
Update README.md
JacobCoffee 4d46fc6
chore: update startcmd
JacobCoffee 5fbd4a8
fix: adjust targets
JacobCoffee 49c40b6
fix: adjust for dep updates
JacobCoffee 3a29068
fix: try to make railway happy
JacobCoffee b22d757
fix: try to make railway happy again
JacobCoffee 91d4f7c
Revert "fix: try to make railway happy again"
JacobCoffee cec03f3
fix: try to make railway happy again 3
JacobCoffee 0fa1ef0
fix: try to make railway happy again 4
JacobCoffee e5928c2
fix: try to make railway happy again 5
JacobCoffee 707a53c
fix: try to make railway happy again 6
JacobCoffee 8003b10
fix: try to make railway happy again 7
JacobCoffee fef0ad7
fix: try to make railway happy again 8
JacobCoffee 8fa14fc
fix: try to make railway happy again 9
JacobCoffee 5bf6d2e
fix: try to make railway happy again 10
JacobCoffee fc2c521
fix: try to make railway happy again 11
JacobCoffee 7fa9f5d
fix: try to make railway happy again 12
JacobCoffee fa98e00
fix: try to make railway happy again 13
JacobCoffee c031637
python packaging is so fucking stupid
JacobCoffee 3a96cf5
ci: apply lint
JacobCoffee File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,34 @@ | ||
| name: Continuous Deployment | ||
|
|
||
| on: | ||
| workflow_dispatch: | ||
|
|
||
|
|
||
| jobs: | ||
| generate-changelog: | ||
| name: Generate changelog | ||
| runs-on: ubuntu-22.04 | ||
| outputs: | ||
| release_body: ${{ steps.git-cliff.outputs.content }} | ||
| steps: | ||
| - name: Checkout | ||
| uses: actions/checkout@v4 | ||
| with: | ||
| fetch-depth: 0 | ||
|
|
||
| - name: Generate a changelog | ||
| uses: orhun/git-cliff-action@main | ||
| id: git-cliff | ||
| with: | ||
| config: pyproject.toml | ||
| args: -vv --latest --strip header | ||
|
|
||
| - name: Commit changelog | ||
| run: | | ||
| git checkout main | ||
| git config user.name 'github-actions[bot]' | ||
| git config user.email 'github-actions[bot]@users.noreply.github.com' | ||
| set +e | ||
| git add docs/changelog.rst | ||
| git commit -m "docs: update changelog" | ||
| git push https://${{ secrets.GITHUB_TOKEN }}@github.com/${GITHUB_REPOSITORY}.git main |
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.