- commit
- 6d8d034c18911a99d36773034d72a513754b97fe
- parent
- a87fc6fe2dd440e96178ba2d8ef176834cb1dcb7
- Author
- Tobias Bengfort <tobias.bengfort@posteo.de>
- Date
- 2024-05-20 21:41
update github actions
Diffstat
| M | .github/workflows/main.yml | 8 | ++++---- |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
@@ -4,7 +4,7 @@ jobs: 4 4 runs-on: ubuntu-latest 5 5 steps: 6 6 - uses: actions/checkout@v47 -1 - uses: actions/setup-python@v4-1 7 - uses: actions/setup-python@v5 8 8 - run: python3 -m pip install ruff 9 9 - name: linters 10 10 run: ruff cplay.py @@ -12,13 +12,13 @@ jobs: 12 12 needs: [lint] 13 13 if: startsWith(github.ref, 'refs/tags') 14 14 runs-on: ubuntu-latest -1 15 permissions: -1 16 id-token: write 15 17 steps: 16 18 - uses: actions/checkout@v417 -1 - uses: actions/setup-python@v4-1 19 - uses: actions/setup-python@v5 18 20 - run: python3 -m pip install build 19 21 - name: build 20 22 run: python3 -m build 21 23 - name: publish 22 24 uses: pypa/gh-action-pypi-publish@release/v123 -1 with:24 -1 password: ${{ secrets.PYPI_API_TOKEN }}