Add support for DynamoDB tables with sort keys in the AWS DynamoDB lo… #20
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: release | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- version | |
permissions: | |
id-token: write | |
defaults: | |
run: | |
shell: bash -ieo pipefail {0} | |
env: | |
TWINE_NON_INTERACTIVE: "true" | |
jobs: | |
release: | |
name: release ${{ matrix.packages.package }} ${{ matrix.packages.os }} | |
runs-on: ${{ matrix.packages.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
packages: | |
- {os: "ubuntu-22.04", package: "sdist"} | |
- {os: "ubuntu-22.04", package: "wheel"} | |
steps: | |
- name: checkout repo | |
uses: actions/checkout@v3 | |
- name: setup | |
run: scripts/setup | |
- name: package-${{ matrix.packages.package }} | |
run: scripts/package-${{ matrix.packages.package }} | |
- name: publish-${{ matrix.packages.package }} | |
uses: pypa/gh-action-pypi-publish@release/v1 |