Skip to content

Commit f747492

Browse files
authored
Merge pull request #295 from amoodie/release
update workflow for release to latest actions
2 parents 8e3f548 + 9b5c48f commit f747492

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/deploy.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,19 @@ jobs:
1111
deploy:
1212

1313
# package runs on all os, so just upload from one for any
14+
name: Deploy to PyPI
1415
runs-on: ubuntu-latest
16+
permissions:
17+
id-token: write
1518

1619
steps:
17-
- uses: actions/checkout@v2
20+
- uses: actions/checkout@v4
1821
- name: Set up Python
19-
uses: actions/setup-python@v2
22+
uses: actions/setup-python@v5
2023
with:
21-
python-version: '3.13'
24+
python-version: "3.13"
2225
- name: Install dependencies
26+
shell: bash
2327
run: |
2428
python -m pip install --upgrade pip
2529
pip install setuptools wheel twine build

0 commit comments

Comments
 (0)