Skip to content

Commit 9c10835

Browse files
authored
Merge pull request #26 from ludbek/feat/release-workflow
Feat/release workflow
2 parents 9f8ee69 + 9cc78c9 commit 9c10835

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,15 @@ jobs:
2222
# Run tests
2323
poetry run pytest
2424
25-
publish-npm:
25+
publish:
2626
needs: tests
2727
runs-on: ubuntu-latest
2828
steps:
2929
- uses: actions/checkout@v3
3030
- uses: actions/setup-python@v4
3131
with:
3232
python-version: '3.10'
33+
- uses: ./.github/actions/setup
3334
- run: |
3435
poetry publish
3536
env:

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
# Pull request trigger works only for PRs into main branch
55
pull_request:
66
branches:
7-
- main
7+
- master
88
push:
99
# Push only works for tags.
1010
# Will be executed on push or successful merge into main.

0 commit comments

Comments
 (0)