blob: 6273e2d0b861b4ba16f84623c3483831eb0f9903 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# .github/workflows/example-1.yml
name: Upload to PyPi
on: [workflow_dispatch]
jobs:
example:
name: Upload
runs-on: ubuntu-latest
steps:
- name: Clone Repository
uses: actions/checkout@v2
run:
echo 1
|