Questions tagged [github-packages]

Packages is a feature on Github allowing packages of files to be stored alongside code in a Github repository.

Github Packages is a feature on Github allowing packages of files to be stored alongside code in a Github repository. Several package registry formats are supported, such as

  • Container
  • RubyGems
  • npm
  • Apache Maven
  • Gradle
  • NuGet
54 questions
0
votes
1 answer

Publishing an NPM pkg to Github Packages fails with EPUBLISHCONFLICT and version @undefined but it still ends up there with the right version

I am publishing an NPM package to a private Github Packages in a private repo. I am getting Error: Cannot publish @user/libs@undefined over existing version. The right version is in the package.json which does not exist in the upstream. But the…
0
votes
0 answers

Java Gradle Gitub packages unable to update and publish individual modules without updating all the versions or have same version for all modules

I want to create a multi module project where each module is an individual library with individual version. The problem is that when I update one module/subproject I need to increase the version of every other module/subproject because github throws…
0
votes
0 answers

GitHub packages + actions automation for NuGet package

We're looking for the ability to publish a new version of a GitHub package (auto bumping the NuGet PackageVersion value in the csproj file) on PR merge. We would like this to bump the version based on a tag added to the PR. We have this working in…
theB3RV
  • 894
  • 4
  • 13
  • 33
0
votes
0 answers

Vercel build failed because of Github Package

I have React app, where I use a package with contracts (only *.d.ts files with interfaces) that is deployed in Github Packages. My react app is deployed with Vercel. Unfortunally I get an error while build in Vercel I install the package like it…
user0810
  • 886
  • 5
  • 19
  • 33
0
votes
0 answers

GitHub action unable to upload jar file in github pckage

I am using GitHub action to deploy a BW6 applications also store the artifact in github package. below is my dev.yaml file name: Tibco Workflow on: pull_request: branches: [ dev ] release: types: [created] jobs: build: …
0
votes
0 answers

Maven is not adding my dependencies to my jar

I am trying to deploy a jar to a maven repo with some dependencies, from the maven. I tried using aven-assembly-plugin and maven-shade-plugin and some other ones. And I am trying to deploy using clean deploy -Dmaven.resolver.transport=wagon…
0
votes
1 answer

403 Forbidden error while installing github packages. which were created with CI/CD pipeline using GITHUB Actions

I had created my react application as a package using github CI/CD pipeline(using github actions). Everything is going fine. But when I trying to install that created package, I'm facing a issue i.e., npm ERR! 403 403 Forbidden - GET…
Pranathi
  • 19
  • 1
0
votes
0 answers

What is the difference between Github Packages and Npm Private packages?

We want to publish private packages within our company. But I can't understand the difference between Github packages and NPM private packages. For me both seems like registry for hosting private packages. But what are the differences and Which…
0
votes
0 answers

Can not add maven github package in spring boot gradle project as dependency

We want to add this github package to our gradle project. build.gradle file: plugins { id 'java' id 'org.springframework.boot' version '3.1.0' id 'io.spring.dependency-management' version '1.1.0' } group = 'com.ssi.test' version =…
Nitin
  • 2,701
  • 2
  • 30
  • 60
0
votes
0 answers

How to use GitHub API to retrieve the latest version of a package?

I'm publishing my build artifacts (JARs, WARs) to a GitHub Packages repository. In the web UI I can easily download any version of the packages, and the latest version is what shows up by default when visiting a package's page. How can I use the…
E-Riz
  • 31,431
  • 9
  • 97
  • 134
0
votes
1 answer

Unable to Push Historical NPM Packages to Github Packages

I've been trying to work out how to push historical NPM packages to Github. My company wants to move it's package hosting/management from a private package manager to Github Packages. So, we have a whole history of versions, going back several years…
0
votes
1 answer

Getting 404 page not found error while using Artifactory as proxy for the GitHub repository where my Maven package is published

I have published Maven package into GitHub and Im trying to use Artifactory as an proxy to fetch the Maven packages from GitHub repository. For this, I have created one remote repository in Artifactory and configured with GitHub repo URL, I have set…
0
votes
1 answer

Deploying of Firebase Cloud functions fails with private GitHub npm package

I´m trying to use my own private github typescript package for google cloud functions. I can install the package locally, but when i try to run "firebase deploy" it throws an error. The .npmrc-file is next to my package.json file and…
0
votes
1 answer

Cannot deploy to GitHub Packages with Maven

Following this guide, I created a very simple GitHub Repo and tried to deploy to GitHub Packages. However I'm getting continuously and randomly one of the following errors: Failed to deploy artifacts: Could not transfer artifact…
0
votes
1 answer

pip install git+url issue || Google colab

enter image description hereI just created a set of functions for retrieving data of API so I shared it on my githhub website. I tried to install my packages on google colab using pip install git+url but the only a get is the following error: Exit…