Skip to content

Commit

Permalink
bunch of work
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeremiaszmacura committed Apr 7, 2024
1 parent da34514 commit bd9571a
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/qa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
push:

jobs:
pre-commit:
qa:
runs-on: ubuntu-22.04

steps:
Expand Down
25 changes: 25 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: release

on:
release:

jobs:
release:
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v4

# Instead of setup Python and pip install there should be Docker container pulled with preinstalled deps
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'

- name: Install upload deps
run: pip install '.[upload]'

- name: Run pre-commit
run: |
python -m build
twine upload dist/*

0 comments on commit bd9571a

Please # to comment.