Skip to content

Commit

Permalink
EBR-79- clean up and build update. Added docker-compose file for Guac…
Browse files Browse the repository at this point in the history
…amole
  • Loading branch information
adrianciu committed Nov 4, 2024
1 parent 9821d4f commit bfc1980
Show file tree
Hide file tree
Showing 24 changed files with 1,463 additions and 958 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
python-version: [ "3.11" ]
node-version: ["20.x"]

steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
30 changes: 0 additions & 30 deletions .github/workflows/check-release.yml

This file was deleted.

13 changes: 0 additions & 13 deletions .github/workflows/enforce-label.yml

This file was deleted.

48 changes: 0 additions & 48 deletions .github/workflows/prep-release.yml

This file was deleted.

58 changes: 0 additions & 58 deletions .github/workflows/publish-release.yml

This file was deleted.

28 changes: 28 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Create and release package

on:
release:
types: [published]

jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Install dependencies
run: |
python -m pip install -U "jupyterlab>=4.0.0,<5" setuptools twine build
- name: Build package
run: |
python -m build
- name: Release on Pypi
env:
TWINE_USERNAME: ${{ secrets.PYPI_USER }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASS }}
run: |
echo "Publishing on pypi..."
twine upload dist/*
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
.idea

*.bundle.*
lib/
node_modules/
Expand All @@ -15,7 +17,7 @@ tvb_ext_rdc/_version.py
# Edit at https://www.gitignore.io/?templates=python

### Python ###
# Byte-compiled / optimized / DLL files
# Byte-compiled / optimized / DLbuiL files
__pycache__/
*.py[cod]
*$py.class
Expand Down
67 changes: 0 additions & 67 deletions .idea/codeStyles/Project.xml

This file was deleted.

5 changes: 0 additions & 5 deletions .idea/codeStyles/codeStyleConfig.xml

This file was deleted.

6 changes: 0 additions & 6 deletions .idea/inspectionProfiles/profiles_settings.xml

This file was deleted.

7 changes: 0 additions & 7 deletions .idea/misc.xml

This file was deleted.

8 changes: 0 additions & 8 deletions .idea/modules.xml

This file was deleted.

6 changes: 0 additions & 6 deletions .idea/prettier.xml

This file was deleted.

8 changes: 0 additions & 8 deletions .idea/tvb-ext-rdc.iml

This file was deleted.

6 changes: 0 additions & 6 deletions .idea/vcs.xml

This file was deleted.

Loading

0 comments on commit bfc1980

Please sign in to comment.