https://github.com/interopio/setup-codeartifact
https://github.com/interopio/setup-codeartifact
infrastructure-tooling
Last synced: 2 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/interopio/setup-codeartifact
- Owner: InteropIO
- License: mit
- Created: 2024-01-19T16:00:28.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2026-03-12T23:41:29.000Z (3 months ago)
- Last Synced: 2026-03-13T06:08:40.702Z (3 months ago)
- Topics: infrastructure-tooling
- Language: TypeScript
- Size: 2.18 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: CODEOWNERS
Awesome Lists containing this project
README
# InteropIO Setup Codeartifact Action
[](https://github.com/marketplace/actions/super-linter)

InteropIO/setup-codeartifact is GitHub Action that sets up AWS Codeartifact for
use in a workflow.
## Usage
### Maven Example
```yaml
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Run Setup Codeartifact
uses: InteropIO/setup-codeartifact@v2
with:
domain: ''
domain-owner: ''
region: ''
maven-settings:
'["repositories":["maven-release", "maven-snapshot"],
"pluginRepositories":["maven-release"], "servers": ["codeartifact"]]'
- name: Run Setup Java
uses: actions/setup-java@v5
with:
distribution: 'temurin'
java-version: '17'
overwrite-settings: false
- name: Run Maven
run:
./mvnw -B clean deploy
-DaltSnapshotDeploymentRepository=codeartifact::https://-.d.codeartifact..amazonaws.com/maven/maven-snapshot-local
-DaltReleaseDeploymentRepository=codeartifact::https://-.d.codeartifact..amazonaws.com/maven/maven-release-local
```