Skip to content

Commit

Permalink
Fix action
Browse files Browse the repository at this point in the history
  • Loading branch information
nikhilwoodruff committed Sep 2, 2024
1 parent 1ef932e commit 577f5cb
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ on:

jobs:
build:
name: Publish docker images
name: Docker
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout
uses: actions/checkout@v4
- name: Log in to the Container registry
uses: docker/login-action
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
Expand All @@ -37,17 +37,17 @@ jobs:
name: Publish
steps:
- name: Checkout code
uses: actions/checkout
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Install package
run: make install
- name: Build package
run: make build
- name: Publish a Python distribution to PyPI
uses: pypa/gh-action-pypi-publish
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI }}
Expand Down

0 comments on commit 577f5cb

Please sign in to comment.