8 questions
27
votes
1
answer
31k
views
How to access maven dependecy from GitHub Package Registry (Beta)
I uploaded a maven artefact to the GitHub Package Registry (Beta) and want to add it as maven dependency. I'm already in the Regestry-Beta and activated it for my sample HalloMaven project. Also the ...
5
votes
1
answer
1k
views
PackageReference to project in the same Solution/git repository
At the moment I'm trying to setup a solution with a implementations class library and an abstractions project. I want to have both packages on nuget.org.
Normally when you're just using ...
2
votes
2
answers
616
views
Install SDK for UWP development in GithubActions CI?
I'm trying to build some UWP libraries and I receive this error:
D:\a\ZXing.Net.Xamarin\ZXing.Net.Xamarin\Source\ZXing.Net.Mobile.WindowsUniversal\ZXing.Net.Mobile.WindowsUniversal.csproj(155,3):
...
1
vote
1
answer
1k
views
Dockerfile COPY failed: stat no such file, when using GitHub CI
I am using GitHub Actions for Gradle project with this given steps:
name: Java CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: ...