cplay-ng

simple curses audio player
git clone https://git.ce9e.org/cplay-ng.git

commit
848e7c9e90814efb4b44e769b8fb8561dea5f33c
parent
90fcdfc6d3a45de74dd51fc89fda8c72953e2405
Author
Tobias Bengfort <tobias.bengfort@posteo.de>
Date
2023-11-04 10:44
update github actions

Diffstat

M .github/workflows/main.yml 9 ++++-----

1 files changed, 4 insertions, 5 deletions


diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml

@@ -3,18 +3,17 @@ jobs:
    3     3   lint:
    4     4     runs-on: ubuntu-latest
    5     5     steps:
    6    -1     - uses: actions/checkout@v3
   -1     6     - uses: actions/checkout@v4
    7     7     - uses: actions/setup-python@v4
    8    -1     - run: pip install ruff
   -1     8     - run: python3 -m pip install ruff
    9     9     - name: linters
   10    -1       run: |
   11    -1         ruff cplay.py
   -1    10       run: ruff cplay.py
   12    11   publish:
   13    12     needs: [lint]
   14    13     if: startsWith(github.ref, 'refs/tags')
   15    14     runs-on: ubuntu-latest
   16    15     steps:
   17    -1     - uses: actions/checkout@v3
   -1    16     - uses: actions/checkout@v4
   18    17     - uses: actions/setup-python@v4
   19    18     - name: build
   20    19       run: python3 setup.py bdist_wheel sdist