1
0
Fork 0
mirror of https://github.com/Kunsi/pretalx-plugin-broadcast-tools synced 2024-05-19 01:27:33 +00:00

github workflows: remove apparently broken packaging check

This commit is contained in:
Franzi 2023-10-10 16:28:38 +02:00
parent 25d8be0397
commit cb60e02671
Signed by: kunsi
GPG key ID: 12E3D2136B818350

View file

@ -133,34 +133,34 @@ jobs:
- name: Run docformatter - name: Run docformatter
run: find -name "*.html" | xargs djhtml -c run: find -name "*.html" | xargs djhtml -c
working-directory: . working-directory: .
packaging: # packaging:
name: packaging # name: packaging
runs-on: ubuntu-latest # runs-on: ubuntu-latest
steps: # steps:
- uses: actions/checkout@v2 # - uses: actions/checkout@v2
- name: install gettext # - name: install gettext
run: sudo apt install gettext # run: sudo apt install gettext
- name: Set up Python 3.8 # - name: Set up Python 3.8
uses: actions/setup-python@v1 # uses: actions/setup-python@v1
with: # with:
python-version: 3.8 # python-version: 3.8
- uses: actions/cache@v1 # - uses: actions/cache@v1
with: # with:
path: ~/.cache/pip # path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/setup.py') }} # key: ${{ runner.os }}-pip-${{ hashFiles('**/setup.py') }}
restore-keys: | # restore-keys: |
${{ runner.os }}-pip- # ${{ runner.os }}-pip-
- name: Install pretalx # - name: Install pretalx
run: pip3 install pretalx # run: pip3 install pretalx
- name: Install Dependencies # - name: Install Dependencies
run: pip3 install twine check-manifest -Ue . # run: pip3 install twine check-manifest -Ue .
- name: Run check-manifest # - name: Run check-manifest
run: check-manifest . # run: check-manifest .
working-directory: . # working-directory: .
- name: Build package # - name: Build package
run: python setup.py sdist # run: python setup.py sdist
working-directory: . # working-directory: .
- name: Check package # - name: Check package
run: twine check dist/* # run: twine check dist/*
working-directory: . # working-directory: .
#