Skip to content
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

✨ Add workflow_dispatch to build CI #142

Merged
merged 55 commits into from
Sep 16, 2024
Merged
Changes from all commits
Commits
Show all changes
55 commits
Select commit Hold shift + click to select a range
6d82c45
:sparkles: Add workflow_dispatch to build CI
Zethson Sep 16, 2024
110cde6
:art: Actions versions
Zethson Sep 16, 2024
41a5670
📝 Update changelog
invalid-email-address Sep 9, 2024
348d9ea
📝 Update changelog
invalid-email-address Sep 9, 2024
4100e57
📝 Update changelog
invalid-email-address Sep 9, 2024
d412158
📝 Update changelog
invalid-email-address Sep 9, 2024
623bf7b
📝 Update changelog
invalid-email-address Sep 9, 2024
31ddf0d
📝 Update changelog
invalid-email-address Sep 9, 2024
62df25c
📝 Update changelog
invalid-email-address Sep 9, 2024
929ad64
📝 Update changelog
invalid-email-address Sep 9, 2024
7e25a22
📝 Update changelog
invalid-email-address Sep 9, 2024
361a2f2
📝 Update changelog
invalid-email-address Sep 9, 2024
132df5f
📝 Update changelog
invalid-email-address Sep 9, 2024
b2879c7
📝 Update changelog
invalid-email-address Sep 9, 2024
329e04e
📝 Update changelog
invalid-email-address Sep 9, 2024
ad6bf20
📝 Update changelog
invalid-email-address Sep 9, 2024
2a9083c
📝 Update changelog
invalid-email-address Sep 9, 2024
28d6dcd
📝 Update changelog
invalid-email-address Sep 9, 2024
a3055b5
📝 Update changelog
invalid-email-address Sep 9, 2024
7e3d968
📝 Update changelog
invalid-email-address Sep 9, 2024
50c95e7
🔖 Release db 0.76.6 (#140)
falexwolf Sep 9, 2024
ac34099
📝 Update changelog
invalid-email-address Sep 9, 2024
2558c97
📝 Update changelog
invalid-email-address Sep 9, 2024
9ca9b39
👷 Install graphviz
falexwolf Sep 10, 2024
2d6ff2a
📝 Update changelog
invalid-email-address Sep 10, 2024
ee59fe4
📝 Update changelog
invalid-email-address Sep 10, 2024
b2da162
📝 Update changelog
invalid-email-address Sep 10, 2024
482d4c6
📝 Update changelog
invalid-email-address Sep 10, 2024
9ae0c5b
📝 Update changelog
invalid-email-address Sep 10, 2024
ba26ef5
📝 Update cellxgene-lamin to new docs artifacts convention (#141)
falexwolf Sep 11, 2024
2981627
📝 Update changelog
invalid-email-address Sep 11, 2024
f9e7be1
📝 Update changelog
invalid-email-address Sep 11, 2024
78fabdb
📝 Update changelog
invalid-email-address Sep 11, 2024
09d2b80
📝 Update changelog
invalid-email-address Sep 11, 2024
8486f10
📝 Update changelog
invalid-email-address Sep 11, 2024
7f5deb9
📝 Update changelog
invalid-email-address Sep 11, 2024
5886b2d
📝 Update changelog
invalid-email-address Sep 11, 2024
22cf34a
📝 Update changelog
invalid-email-address Sep 11, 2024
fe549ac
📝 Update changelog
invalid-email-address Sep 12, 2024
3f69728
📝 Update changelog
invalid-email-address Sep 12, 2024
672c20d
📝 Update changelog
invalid-email-address Sep 12, 2024
f9d259f
📝 Update changelog
invalid-email-address Sep 12, 2024
cc7250e
📝 Update changelog
invalid-email-address Sep 13, 2024
5e821ab
📝 Update changelog
invalid-email-address Sep 13, 2024
8b5d670
📝 Update changelog
invalid-email-address Sep 13, 2024
7cba4fe
📝 Update changelog
invalid-email-address Sep 13, 2024
39c8333
📝 Update changelog
invalid-email-address Sep 13, 2024
120e39b
📝 Update changelog
invalid-email-address Sep 13, 2024
114c006
📝 Update changelog
invalid-email-address Sep 13, 2024
c49825d
📝 Update changelog
invalid-email-address Sep 14, 2024
72861b8
📝 Update changelog
invalid-email-address Sep 14, 2024
bc3d7f9
📝 Update changelog
invalid-email-address Sep 15, 2024
c649562
📝 Update changelog
invalid-email-address Sep 15, 2024
ba99de7
📝 Update changelog
invalid-email-address Sep 15, 2024
3567bad
Merge branch 'main' into feature/workflow_dispatch
Zethson Sep 16, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ on:
branches: [main]
repository_dispatch:
types: [build]
workflow_dispatch:

jobs:
build:
Expand All @@ -18,10 +19,10 @@ jobs:
timeout-minutes: 8

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
Expand Down
Loading