Skip to content

Bump peaceiris/actions-gh-pages from 3.7.3 to 3.9.3 (#53) #15

Bump peaceiris/actions-gh-pages from 3.7.3 to 3.9.3 (#53)

Bump peaceiris/actions-gh-pages from 3.7.3 to 3.9.3 (#53) #15

Workflow file for this run

name: cd
on:
push:
branches: [main]
jobs:
release-please:
runs-on: ubuntu-latest
outputs:
release_created: ${{ steps.release.outputs.release_created }}
steps:
- uses: google-github-actions/release-please-action@v3
id: release
with:
release-type: python
package-name: netsuite
bump-minor-pre-major: true
cd:
runs-on: ubuntu-latest
needs: [release-please]
if: needs.release-please.outputs.release_created
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v3
with:
python-version: "3.10"
architecture: x64
- uses: abatilo/[email protected]
with:
poetry-version: "1.1.13"
- run: poetry build
- run: poetry publish
env:
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_API_TOKEN }}