Skip to content

Commit

Permalink
fix: publishing job
Browse files Browse the repository at this point in the history
  • Loading branch information
HokageM committed Mar 28, 2024
1 parent 578dadb commit c17b115
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,16 @@ jobs:
publish:
runs-on: ubuntu-latest

if: startsWith(github.ref, 'refs/tags/')
strategy:
matrix:
python-version: [ "3.10" ]

steps:
- name: Checkout Repository
uses: actions/checkout@v3

- name: Set up Python
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: 3.10

python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit c17b115

Please sign in to comment.