-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit ce75eae
Showing
51 changed files
with
3,028 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
name: New Release | ||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- main | ||
jobs: | ||
semantic_release: | ||
runs-on: ubuntu-latest | ||
concurrency: semantic_release | ||
permissions: | ||
id-token: write | ||
contents: write | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: '3.11' | ||
|
||
- name: Install Poetry | ||
run: | | ||
curl -sSL https://install.python-poetry.org | python3 - | ||
echo "${HOME}/.local/bin" >> $GITHUB_PATH | ||
- name: Install dependencies | ||
run: poetry install | ||
|
||
- name: Set PYTHONPATH to subdirectory sdcat | ||
run: echo "PYTHONPATH=." >> $GITHUB_ENV | ||
- name: Check release status | ||
id: release-status | ||
env: | ||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run: | | ||
pip install python-semantic-release | ||
########################################################################## | ||
# Add a --noop flag to check without releasing if adding pypi to next steps | ||
########################################################################## | ||
if semantic-release --strict version | ||
then | ||
echo "Releasing new version." | ||
else | ||
echo "Skipping release steps." | ||
fi |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
# Checkpoings | ||
checkpoints/ | ||
|
||
# CoTracker source | ||
co-tracker/ | ||
|
||
# Diagrams | ||
*.graffle | ||
|
||
# Log files | ||
*.log | ||
|
||
# Secrets | ||
.env | ||
|
||
# Model weights | ||
*.pt | ||
|
||
# test data | ||
examples/data/ | ||
*.tar.gz | ||
|
||
# Pycharm | ||
.idea/ | ||
|
||
# Node artifact files | ||
node_modules/ | ||
dist/ | ||
|
||
# Compiled Python bytecode | ||
*.py[cod] | ||
|
||
# JetBrains IDE | ||
.idea/ | ||
|
||
# Unit test reports | ||
TEST*.xml | ||
|
||
# Generated by MacOS | ||
.DS_Store | ||
|
||
# Generated by Windows | ||
Thumbs.db | ||
|
||
# Applications | ||
*.app | ||
*.exe | ||
*.war | ||
|
||
# Large media files | ||
*.mp4 | ||
*.tiff | ||
*.avi | ||
*.flv | ||
*.mov | ||
*.wmv | ||
|
||
#Mkdocs | ||
docs/site |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# CHANGELOG |
Oops, something went wrong.