From df195de112acc8231692652e6b4c9e707965d382 Mon Sep 17 00:00:00 2001
From: Simonas <20096648+simjak@users.noreply.github.com>
Date: Thu, 9 Nov 2023 14:04:29 +0200
Subject: [PATCH] github action for release

---
 .github/workflows/release.yml | 42 +++++++++++++++++++++++++++++++++++
 .gitignore                    |  3 ++-
 .vscode/settings.json         |  5 -----
 3 files changed, 44 insertions(+), 6 deletions(-)
 create mode 100644 .github/workflows/release.yml
 delete mode 100644 .vscode/settings.json

diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
new file mode 100644
index 00000000..66c806ef
--- /dev/null
+++ b/.github/workflows/release.yml
@@ -0,0 +1,42 @@
+name: Release
+
+on:
+  push:
+    tags:
+      - '*'
+
+jobs:
+  build:
+    runs-on: ubuntu-latest
+    steps:
+    - uses: actions/checkout@v2
+    - name: Set up Python
+      uses: actions/setup-python@v2
+      with:
+        python-version: '3.x'
+    - name: Install dependencies
+      run: |
+        python -m pip install --upgrade pip
+        pip install setuptools wheel twine
+    - name: Build and publish
+      env:
+        TWINE_USERNAME: __token__
+        TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
+      run: |
+        python setup.py sdist bdist_wheel
+        twine upload dist/*
+
+  release:
+    needs: build
+    runs-on: ubuntu-latest
+    steps:
+    - name: Create Release
+      id: create_release
+      uses: actions/create-release@v1
+      env:
+        GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+      with:
+        tag_name: ${{ github.ref }}
+        release_name: Release ${{ github.ref }}
+        draft: false
+        prerelease: false
diff --git a/.gitignore b/.gitignore
index 96e79706..df57182d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -4,10 +4,11 @@ __pycache__
 .DS_Store
 venv/
 /.vscode
+.vscode
 **/__pycache__
 **/*.py[cod]
 
 # local env files
 .env*.local
 .env
-mac.env
\ No newline at end of file
+mac.env
diff --git a/.vscode/settings.json b/.vscode/settings.json
deleted file mode 100644
index 40b98b58..00000000
--- a/.vscode/settings.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
-    "cSpell.words": [
-        "linalg"
-    ]
-}
\ No newline at end of file
-- 
GitLab