feat(deps): Version bump #9
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Upload | |
on: | |
push: | |
tags: | |
- v*.*.* | |
jobs: | |
upload: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
format: space-delimited | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Install stuff | |
run: | | |
sudo apt-get update | |
sudo apt-get install poppler-utils -y | |
sudo apt-get install python3-pip -y | |
pip install -r requirements-ci.txt | |
- name: Upload portraits | |
working-directory: judge_pics/ | |
run: | | |
python3 upload.py \ | |
-a ${{ secrets.AWS_ACCESS_KEY }} \ | |
-s ${{ secrets.AWS_SECRET_KEY }} | |
- name: Publish package | |
uses: casperdcl/deploy-pypi@v2 | |
with: | |
password: ${{ secrets.pypi_token }} | |
build: true |