Skip to content

Commit 7e61876

Browse files
authored
ENH - Update release action (#60)
Before cutting a new package release, I updated the release workflow to use trusted publishers for releases moving forward. I also bumped a few of our actions running on outdated versions.
1 parent 259b040 commit 7e61876

File tree

2 files changed

+34
-36
lines changed

2 files changed

+34
-36
lines changed

.github/workflows/pypi-package.yml

+23-22
Original file line numberDiff line numberDiff line change
@@ -2,24 +2,19 @@ name: Build and maybe upload PyPI package
22

33
on:
44
push:
5-
branches:
6-
- main
7-
tags:
8-
- "*"
5+
branches: [main]
6+
tags: ["*"]
97
pull_request:
10-
branches:
11-
- main
8+
branches: [main]
129
release:
13-
types:
14-
- published
10+
types: [published]
1511
workflow_dispatch:
1612

1713
env:
1814
FORCE_COLOR: "1" # Make tools pretty.
1915

2016
permissions:
2117
contents: read
22-
id-token: write
2318

2419
jobs:
2520
# Always build and lint
@@ -28,50 +23,56 @@ jobs:
2823
runs-on: ubuntu-latest
2924

3025
steps:
31-
- name: Checkout repository 🛎
32-
uses: actions/checkout@v3
26+
- name: "Checkout repository 🛎"
27+
uses: actions/checkout@v4
3328
with:
3429
fetch-depth: 0
3530

36-
- uses: hynek/build-and-inspect-python-package@v1
31+
- name: "Build and inspect package 🛠"
32+
uses: hynek/build-and-inspect-python-package@v2
3733

3834
# Upload to Test PyPI on every commit on main.
3935
release-test-pypi:
4036
name: Publish in-dev package to test.pypi.org
4137
environment: release-test-pypi
38+
permissions:
39+
id-token: write
4240
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
4341
runs-on: ubuntu-latest
4442
needs: build-package
4543

4644
steps:
47-
- name: Download package built in previous job 📥
48-
uses: actions/download-artifact@v3
45+
- name: "Download package built in previous job 📥"
46+
uses: actions/download-artifact@v4
4947
with:
5048
name: Packages
5149
path: dist
52-
- name: Upload package to Test PyPI 🚀
50+
- name: "Upload package to Test PyPI 🚀"
5351
uses: pypa/gh-action-pypi-publish@release/v1
5452
with:
55-
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
5653
repository-url: https://test.pypi.org/legacy/
5754

5855
# Upload to real PyPI on GitHub Releases.
5956
release-pypi:
6057
name: Publish released package to pypi.org 🚀
61-
environment: release-pypi
62-
if: github.event.action == 'published'
58+
environment:
59+
name: release-pypi
60+
url: https://pypi.org/project/accessible-pygments/
61+
permissions:
62+
id-token: write
63+
if: github.repository_owner == 'Quansight-Labs' && github.event_name == 'release' && startsWith(github.ref, 'refs/tags/')
6364
runs-on: ubuntu-latest
6465
needs: build-package
6566

6667
steps:
67-
- name: Download packages built by build-and-inspect-python-package 📥
68-
uses: actions/download-artifact@v3
68+
- name: "Download packages built in previous job 📥"
69+
uses: actions/download-artifact@v4
6970
with:
7071
name: Packages
7172
path: dist
7273

73-
- name: Upload package to PyPI 🚀
74+
- name: "Upload package to PyPI 🚀"
7475
uses: pypa/gh-action-pypi-publish@release/v1
7576
with:
76-
password: ${{ secrets.PYPI_API_TOKEN }}
7777
print-hash: true
78+
verbose: true

CHANGELOG.md

+11-14
Original file line numberDiff line numberDiff line change
@@ -2,24 +2,21 @@
22

33
- MAINT - Add pre-commits and update docs by @trallard in https://github.com/Quansight-Labs/accessible-pygments/pull/26
44
- ENH - Move to hatch for dev/build by @trallard in https://github.com/Quansight-Labs/accessible-pygments/pull/27
5-
- [pre-commit.ci] pre-commit autoupdate by @pre-commit-ci in https://github.com/Quansight-Labs/accessible-pygments/pull/28
6-
- [pre-commit.ci] pre-commit autoupdate by @pre-commit-ci in https://github.com/Quansight-Labs/accessible-pygments/pull/29
7-
- Delete docs/all_themes.pptx by @gabalafou in https://github.com/Quansight-Labs/accessible-pygments/pull/40
5+
- MAINT - Delete docs/all_themes.pptx by @gabalafou in https://github.com/Quansight-Labs/accessible-pygments/pull/40
86
- [DOC] Remove conda instructions from contributing by @gabalafou in https://github.com/Quansight-Labs/accessible-pygments/pull/39
9-
- Remove build artifacts from the repo by @gabalafou in https://github.com/Quansight-Labs/accessible-pygments/pull/41
10-
- Automate theme READMEs by @gabalafou in https://github.com/Quansight-Labs/accessible-pygments/pull/42
7+
- ENH - Remove build artifacts from the repo by @gabalafou in https://github.com/Quansight-Labs/accessible-pygments/pull/41
8+
- ENH - Automate theme READMEs by @gabalafou in https://github.com/Quansight-Labs/accessible-pygments/pull/42
119
- MAINT - Miscellaneous updates by @trallard in https://github.com/Quansight-Labs/accessible-pygments/pull/46
1210
- BUG - Ensure no local version by @trallard in https://github.com/Quansight-Labs/accessible-pygments/pull/48
13-
- Automate theme README screenshots by @gabalafou in https://github.com/Quansight-Labs/accessible-pygments/pull/43
11+
- ENH - Automate theme README screenshots by @gabalafou in https://github.com/Quansight-Labs/accessible-pygments/pull/43
1412
- MAINT - Update pre-commit hooks by @trallard in https://github.com/Quansight-Labs/accessible-pygments/pull/45
15-
- [pre-commit.ci] pre-commit autoupdate by @pre-commit-ci in https://github.com/Quansight-Labs/accessible-pygments/pull/49
16-
- Fix contrast failures for high contrast light theme by @gabalafou in https://github.com/Quansight-Labs/accessible-pygments/pull/33
17-
- Fix broken theme URLs in README, typo in demo html by @meli-lewis in https://github.com/Quansight-Labs/accessible-pygments/pull/53
18-
- Update code to not get images from placeholder.com by @Carreau in https://github.com/Quansight-Labs/accessible-pygments/pull/51
19-
- Reflect that rgb colors are in 0-1 and floats. by @Carreau in https://github.com/Quansight-Labs/accessible-pygments/pull/52
20-
- Small refactor of color utils for readibility and type checkability by @gabalafou in https://github.com/Quansight-Labs/accessible-pygments/pull/55
21-
- Rename hex to float function by @gabalafou in https://github.com/Quansight-Labs/accessible-pygments/pull/57
22-
- Set a11y-light default background to #f2f2f2 (light gray) by @gabalafou in https://github.com/Quansight-Labs/accessible-pygments/pull/56
13+
- BUG - Fix contrast failures for high contrast light theme by @gabalafou in https://github.com/Quansight-Labs/accessible-pygments/pull/33
14+
- ENH -Fix broken theme URLs in README, typo in demo html by @meli-lewis in https://github.com/Quansight-Labs/accessible-pygments/pull/53
15+
- ENH - Update code to not get images from placeholder.com by @Carreau in https://github.com/Quansight-Labs/accessible-pygments/pull/51
16+
- ENH -Reflect that rgb colors are in 0-1 and floats. by @Carreau in https://github.com/Quansight-Labs/accessible-pygments/pull/52
17+
- ENH - Small refactor of color utils for readibility and type checkability by @gabalafou in https://github.com/Quansight-Labs/accessible-pygments/pull/55
18+
- ENH - Rename hex to float function by @gabalafou in https://github.com/Quansight-Labs/accessible-pygments/pull/57
19+
- ENH - Set a11y-light default background to #f2f2f2 (light gray) by @gabalafou in https://github.com/Quansight-Labs/accessible-pygments/pull/56
2320

2421
### New Contributors
2522

0 commit comments

Comments
 (0)