Skip to content

Commit

Permalink
fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
chiang-yuan committed Sep 18, 2024
1 parent 200e7b9 commit 0fe3aac
Showing 1 changed file with 21 additions and 21 deletions.
42 changes: 21 additions & 21 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,30 +5,30 @@ on:
types: [published, released]

jobs:
publish:
publish:
runs-on: ubuntu-latest

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

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x' # Use your desired Python version
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x' # Use your desired Python version

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build twine
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build twine
- name: Build package
run: |
python -m build
- name: PyPI
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
run: |
python -m twine upload dist/* --comment "${{ steps.get_release_notes.outputs.release_notes }}"
- name: Build package
run: |
python -m build
- name: PyPI
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
run: |
python -m twine upload dist/* --comment "${{ steps.get_release_notes.outputs.release_notes }}"

0 comments on commit 0fe3aac

Please sign in to comment.