Skip to content

Commit d7999d6

Browse files
Github actions on tags only
1 parent 97dbd48 commit d7999d6

File tree

4 files changed

+795
-11
lines changed

4 files changed

+795
-11
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
name: Deploy Documentation
22
on:
33
push:
4-
branches:
5-
- master
6-
- main
4+
tags:
5+
- '*'
76
permissions:
87
contents: write
98
jobs:
109
deploy:
1110
runs-on: ubuntu-latest
11+
if: startsWith(github.ref, 'refs/tags/') && github.event.base_ref == 'refs/heads/master'
1212
steps:
1313
- uses: actions/checkout@v4
1414
- name: Configure Git Credentials
@@ -26,4 +26,4 @@ jobs:
2626
restore-keys: |
2727
mkdocs-material-
2828
- run: pip install mkdocs-material mkdocstrings mkdocstrings-python mkdocs-include-markdown-plugin
29-
- run: mkdocs gh-deploy --force
29+
- run: mkdocs gh-deploy --force

.github/workflows/update_space.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ name: Deploy to HuggingFace
22

33
on:
44
push:
5-
branches:
6-
- main
7-
- master
5+
tags:
6+
- '*'
87

98
jobs:
109
build:
1110
runs-on: ubuntu-latest
11+
if: startsWith(github.ref, 'refs/tags/') && github.event.base_ref == 'refs/heads/master'
1212

1313
steps:
1414
- name: Checkout

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ sdk_version: 5.31.0
88

99
OpenSymbiose is an open-source biotechnology / biology research AI agent designed to support researcher.
1010

11+
[DOCUMENTATION](https://lambda-science.github.io/OpenSymbiose/) - [DEMO ON HUGGINGFACE](https://huggingface.co/spaces/corentinm7/opensymbiose) - [CODE REPO](https://github.com/lambda-science/OpenSymbiose)
12+
1113
Creator and Maintainer: [**Corentin Meyer**, PhD](https://cmeyer.fr/) - <contact@cmeyer.fr>
1214

1315
## Installation

0 commit comments

Comments
 (0)