Skip to content

Commit

Permalink
new version v0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
aminelemaizi committed Apr 7, 2024
1 parent ea1e6cf commit bc25042
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions .github/workflows/coded-flows-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,28 +12,28 @@ on:
release:
types: [published]

defaults:
run:
working-directory: coded-flows/

jobs:
deploy:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.8'
- name: Install Poetry
run: pip install poetry

- name: Install dependencies with Poetry
run: poetry install
working-directory: coded-flows

- name: Configure Poetry
run: poetry config pypi-token.pypi ${{ secrets.PYPI_API_TOKEN }}
working-directory: coded-flows

- name: Build and publish
run: poetry publish --build
working-directory: coded-flows
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.8'
- name: Install Poetry
run: pip install poetry

- name: Install dependencies with Poetry
run: poetry install

- name: Configure Poetry
run: poetry config pypi-token.pypi ${{ secrets.PYPI_API_TOKEN }}

- name: Build and publish
run: poetry publish --build

0 comments on commit bc25042

Please # to comment.