Skip to content

Commit

Permalink
Make gha consistent
Browse files Browse the repository at this point in the history
  • Loading branch information
pappasam committed Nov 18, 2024
1 parent 11bc63f commit 3ecdbc6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 10 deletions.
12 changes: 4 additions & 8 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,15 @@ on:
types: [published]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.12"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup, Python ${{ matrix.python-version }}
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
python-version: "3.12"
architecture: x64
- name: Deploy with Python ${{ matrix.python-version }}
- name: Deploy
env:
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.POETRY_PYPI_TOKEN_PYPI }}
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/testing.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Select Python 3.12
uses: actions/setup-python@v5
with:
python-version: 3.12
python-version: "3.12"
architecture: x64
- name: Install Dependencies
run: |
Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:
- name: Select Python 3.12
uses: actions/setup-python@v5
with:
python-version: 3.12
python-version: "3.12"
architecture: x64
- name: Install Dependencies
run: |
Expand Down

0 comments on commit 3ecdbc6

Please sign in to comment.