Skip to content
Snippets Groups Projects
Commit df195de1 authored by Simonas's avatar Simonas
Browse files

github action for release

parent 79834adb
No related branches found
No related tags found
No related merge requests found
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
......@@ -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
{
"cSpell.words": [
"linalg"
]
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment