Skip to content

Ape AWS 0.8.0-alpha.3 #7

Ape AWS 0.8.0-alpha.3

Ape AWS 0.8.0-alpha.3 #7

Workflow file for this run

name: Release
on:
release:
types: [released]
jobs:
deploy:
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/p/ape-aws
# NOTE: this permission is mandatory for trusted publishing
permissions:
id-token: write
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[release]
- name: Build
run: python setup.py sdist bdist_wheel
- name: Publish
uses: pypa/gh-action-pypi-publish@release/v1