Skip to content

Commit 786d371

Browse files
committed
Merge branch 'chore/add-jwk-integration' of https://github.com/permitio/langchain-permit into chore/add-jwk-integration
2 parents c1ce91e + 6ec7719 commit 786d371

File tree

2 files changed

+12
-8
lines changed

2 files changed

+12
-8
lines changed

.github/workflows/publish.yml

+11-7
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,14 @@ jobs:
1616
- name: Install Poetry
1717
run: |
1818
curl -sSL https://install.python-poetry.org | python3 -
19-
- name: Build and publish
20-
env:
21-
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
22-
run: |
23-
poetry config pypi-token.pypi $PYPI_TOKEN
24-
poetry build
25-
poetry publish
19+
- name: Configure Poetry
20+
run: poetry config pypi-token.pypi ""
21+
22+
- name: Build package
23+
run: poetry build
24+
25+
- name: Publish to PyPI
26+
env:
27+
POETRY_HTTP_BASIC_PYPI_USERNAME: __token__
28+
POETRY_HTTP_BASIC_PYPI_PASSWORD: ""
29+
run: poetry publish

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Tests
22

33
on:
44
pull_request:
5-
branches: [main]
5+
branches: [master]
66

77
jobs:
88
test:

0 commit comments

Comments
 (0)