Skip to content

Commit

Permalink
betterest indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
moiSentineL authored Aug 9, 2024
1 parent 26dc304 commit aac35e8
Showing 1 changed file with 29 additions and 29 deletions.
58 changes: 29 additions & 29 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,37 +51,37 @@ jobs:
name: ${{ runner.os }}-library
path: ${{ matrix.output }}

publish:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
publish:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.12.3"
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.12.3"

- name: Download all artifacts
uses: actions/download-artifact@v2
with:
path: ./artifacts
- name: Download all artifacts
uses: actions/download-artifact@v2
with:
path: ./artifacts

- name: Move artifacts to correct locations
run: |
mkdir -p flomo
mv artifacts/Linux-library/session_id.so flomo/
mv artifacts/macOS-library/session_id.dylib flomo/
mv artifacts/Windows-library/session_id.dll flomo/
- name: Move artifacts to correct locations
run: |
mkdir -p flomo
mv artifacts/Linux-library/session_id.so flomo/
mv artifacts/macOS-library/session_id.dylib flomo/
mv artifacts/Windows-library/session_id.dll flomo/
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
- name: Build and Publish
env:
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }}
run: |
python setup.py sdist bdist_wheel
twine upload dist/*
- name: Build and Publish
env:
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }}
run: |
python setup.py sdist bdist_wheel
twine upload dist/*

0 comments on commit aac35e8

Please sign in to comment.