Version bump #22
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: Fire the publish workflow using Bluish | |
on: [push, workflow_dispatch] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.11' | |
- run: | | |
python3 -m venv .e | |
. .e/bin/activate | |
pip install --upgrade pip | |
pip install bluish | |
blu publish |