Skip to content

Latest commit

 

History

History
31 lines (26 loc) · 843 Bytes

File metadata and controls

31 lines (26 loc) · 843 Bytes

Poetry CodeArtifact publish Action

Publishing Python packages to AWS CodeArtifact using Poetry was never so easy!

Usage:

name: publish-my-package

on:
  pull_request:
    types: [closed]
    branches:
      - main

jobs:
  publish:
    if: github.event.pull_request.merged
    runs-on: ubuntu-latest
    steps:
      - name: Publish
        uses: source-ag/poetry-codeartifact-publish-action@v1
        with:
          aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
          aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
          aws-region: eu-central-1
          role-to-assume: ${{ secrets.PACKAGE_REPOSITORY_ROLE }}
          codeartifact-domain: my-domain
          codeartifact-domain-owner: 123456789012
          codeartifact-repository: my-python-packages