Move .python-version #12
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: Build & release wheels | |
on: | |
push: | |
branches: | |
- main | |
schedule: | |
- cron: '53 23 * * *' # Daily at 23:53 UTC | |
jobs: | |
build: | |
name: Build & release wheels | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Update python | |
uses: actions/setup-python@v4 | |
with: | |
python-version-file: cli/.python-version | |
- name: Update pipx | |
run: | | |
python3 -m pip install pipx | |
python3 -m pipx ensurepath | |
- name: Install poetry | |
run: pipx install poetry | |
- name: Install CLI | |
run: pipx install ./cli/ | |
- run: build charms.json |