Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fred78290/aws-codeartifact-delete-maven-package
Delete maven package from AWS codeartifact targeted by the current pom.xml
https://github.com/fred78290/aws-codeartifact-delete-maven-package
action actions aws codeartifact delete-package-versions deletepackageversions gihub-actions github maven package package-management
Last synced: 3 days ago
JSON representation
Delete maven package from AWS codeartifact targeted by the current pom.xml
- Host: GitHub
- URL: https://github.com/fred78290/aws-codeartifact-delete-maven-package
- Owner: Fred78290
- Created: 2022-04-23T14:55:54.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-10-31T09:27:43.000Z (about 2 years ago)
- Last Synced: 2024-11-14T16:45:12.761Z (4 days ago)
- Topics: action, actions, aws, codeartifact, delete-package-versions, deletepackageversions, gihub-actions, github, maven, package, package-management
- Language: JavaScript
- Homepage:
- Size: 1010 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# aws-codeartifact-delete-maven-package
Required: `aws-actions/configure-aws-credentials`
Delete maven package from AWS codeartifact targeted by the current pom.xml
## `domain`
The name of the domain that contains the package to delete.
### `domain-owner`
The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.
## `region`
AWS CodeArtifact Region.
## `repository`
The name of the repository that contains the package versions to delete.
### Example
```yml
Test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v1
with:
role-to-assume: arn:aws:iam::*****
aws-region: us-east-1
- name: aws-codeartifact-delete-maven-package
uses: Fred78290/aws-codeartifact-delete-maven-package@v****
with:
domain: release
domain-owner: 123456789012
region: us-east-1
repository: fred78290
```