We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8cbf4b7 commit 7c88e73Copy full SHA for 7c88e73
.github/workflows/temp-release.yml
@@ -0,0 +1,24 @@
1
+name: Testing actors
2
+
3
+on:
4
+ push:
5
+ workflow_dispatch:
6
7
+jobs:
8
+ auto-release:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - name: Checkout source
12
+ uses: actions/checkout@v4
13
+ with:
14
+ fetch-depth: 0
15
16
+ - name: Create release
17
+ run: |
18
+ echo "@${{ github.actor }} is creating a release triggered by ${{ github.event_name }}"
19
+ env:
20
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
21
+ TWINE_USERNAME: __token__
22
+ TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
23
24
+# vim:set sts=2:
0 commit comments