Skip to content

TEMP: adding workflow to reveal actor #1

TEMP: adding workflow to reveal actor

TEMP: adding workflow to reveal actor #1

Workflow file for this run

name: Testing actors
on:
push:
workflow_dispatch:
jobs:
auto-release:
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Create release
run: |
echo "@${{ github.actor }} is creating a release triggered by ${{ github.event_name }}"
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
# vim:set sts=2: