Questions tagged [aws-codeartifact]

132 questions
0
votes
0 answers

Maven ArtifactNotFoundException when downloading artefact from repo

I have a AWS CodeArtifact repo that has a dependency. When I do the mvn clean install -U in a CICD pipeline, it appears to download the required dependency but then fails with a ArtifactNotFoundException. output Downloading from…
Richard
  • 8,193
  • 28
  • 107
  • 228
0
votes
1 answer

AWS CodeArtifact maven deploy failing with Unauthorized (401)

I have created a AWS CodeArtifact repository, and would like to upload some artefacts to it, however when I try do so I get the following error: Error status code: 401, reason phrase: Unauthorized (401) I have the following configuration on AWS…
Richard
  • 8,193
  • 28
  • 107
  • 228
0
votes
0 answers

Why is package sourced from AWS CodeArtifact rebuilding upon install?

I'm sourcing a custom python package that I uploaded to CodeArtifact but noticed that the .whl file gets rebuilt every time I install it. I would not have expected that to happen as I uploaded the pre-built .whl file to the respository. I would…
0
votes
0 answers

Mirroring a private nuget repository with AWS Code Artifact

In our project, we are using a few sources of Nuget packages nuget.org our packages repository third-party repository that has stability issues Once we are using AWS I was wondering whether we can move to the Code Artifact repository. Did yu find…
dr11
  • 5,166
  • 11
  • 35
  • 77
0
votes
1 answer

How to authenticate with AWS Code Artifact Repository from GitHub Actions?

I have a repository configured in AWS CodeArtifact. I can access it as an administrator from my local machine with dotnet restore. Now I am trying to get it to work with GitHub actions for deployment. I have the following workflow: jobs: …
baynezy
  • 6,493
  • 10
  • 48
  • 73
0
votes
0 answers

Better way to know total storage consumed by a CodeArtifact repository?

Got an alert saying my CodeArtifact usage has crossed FreeTier limit. I was trying to find out how much storage is currently consumed but got no clue from AWS Console or even cli. I ended up listing down all repositories of a domain > then listing…
Rafaf Tahsin
  • 7,652
  • 4
  • 28
  • 45
0
votes
1 answer

How to manage local Go modules in AWS?

I am looking at ways to manage Go modules and looking at AWS Codeartifact, I don't see an option for Go while creating repository. How can we manage Go modules in AWS? But found this in Google search, looks like GCP has support for Go modules.…
0
votes
0 answers

using maturin to publish to private PyPi (code artifact)

I have a rust project, using pyo3. The project is built and installed via Maturin and locally everything works ok. I'm trying to publish the package into an AWS Code Artifact PyPi, however, even after configuring MATURIN_PYPI_TOKEN and providing the…
picki23
  • 53
  • 4
0
votes
0 answers

How can I access a Python package in AWS CodeArtifact from a Glue Job?

I'm writing a Glue job that requires a custom package we host in our AWS CodeArtifact repository. I haven't found how to install a PyPi package from AWS CodeArtifact since all the instructions involve reading from a S3 folder that IMHO defeats the…
tonicebrian
  • 4,715
  • 5
  • 41
  • 65
0
votes
0 answers

Having difficulty creating pipeline with a source input and an S3 input to a windows build machine

I have modified a working configuration where the source is pulled from github, and then built on a windows build machine. I also need an S3 resource to be copied from a bucket. I have gone round and round with trying different things. The…
0
votes
0 answers

AWS CodeArtifact not adding npm packages to my repository

The whole point of using something like CodeArtifact in my project was to manage 3rd-party npm and pypi dependencies, but it doesn't seem to work as expected with npm. I've created in CodeArtifact a domain and a main repository called "MainRepo"…
mosquetero
  • 106
  • 7
0
votes
1 answer

Uploading Bitbucket pipeline to AWS CodeArtifact

I'm using AWS CodeArtifact to store Python packages. I really like CodeArtifact concept. For Source code repository I use Bitbucket. I'd like to automate things and involve Bitbucket Pipeline to build package and upload it to…
Marek
  • 82
  • 6
0
votes
0 answers

Maven Version Increment using github action

I am writing to seek assistance with an issue I am experiencing while using the GitHub action "qcastel/github-actions-maven-release" to build my project. I have noticed that the action replaces my settings.xml file from the .m2 folder and uses its…
0
votes
1 answer

How to use AWS code artifact using serverless framework

I want to upload my serverless package in AWS Code Artifact using : sls package --package target/dev --verbose --stage dev aws codeartifact login --tool twine --repository XX --domain XX --domain-owner XX --region XX twine upload…
0
votes
0 answers

How to delete a config item from AWS EBS .ebextensions file?

I am attempting to deploy an application to AWS EBS on Amazon Linux. The application includes a postgres client, so I included the following line in a file .ebextensions/01_install: packages: yum: postgresql93-devel: [] However, it turned out…
1 2 3
8 9