Skip to content

Commit 7c88e73

Browse files
committed
TEMP: adding workflow to reveal actor
1 parent 8cbf4b7 commit 7c88e73

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/temp-release.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)