We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 68496f3 commit d500497Copy full SHA for d500497
.github/workflows/release.yml
@@ -0,0 +1,21 @@
1
+name: 📦 Release
2
+
3
+on:
4
+ push:
5
+ tags:
6
+ - v*
7
8
+jobs:
9
+ release:
10
+ runs-on: ubuntu-latest
11
+ environment:
12
+ name: pypi
13
+ url: https://pypi.org/p/brent-search
14
+ permissions:
15
+ id-token: write
16
+ steps:
17
+ - uses: actions/checkout@v4
18
+ - name: Build
19
+ run: pipx run build
20
+ - name: Publish
21
+ uses: pypa/gh-action-pypi-publish@release/v1
.github/workflows/test.yml
@@ -1,4 +1,4 @@
-name: 🧪 Testing
+name: 🧪 Test
on: push
0 commit comments