-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
name: Update pinned.txt | ||
|
||
on: | ||
push: | ||
paths: | ||
- poetry.lock | ||
|
||
jobs: | ||
update-requirements: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.11' # Specify the Python version you need | ||
|
||
- name: Install Poetry | ||
uses: snok/install-poetry@v1 | ||
with: | ||
version: 1.8.3 | ||
|
||
- name: Install dependencies | ||
run: poetry install | ||
|
||
- name: Export dependencies to pinned.txt | ||
run: poetry export --without-hashes --without-urls | awk '{ print $1 }' FS=';' > pinned.txt | ||
|
||
- name: Show generated pinned.txt | ||
run: cat pinned.txt | ||
|
||
- uses: EndBug/add-and-commit@v9 | ||
with: | ||
message: Export pinned.txt |