mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-01-11 20:10:30 +00:00
Some checks failed
Canary release job / Create tag (push) Has been cancelled
Canary release job / Release for linux-arm64 (push) Has been cancelled
Canary release job / Release for linux-x64 (push) Has been cancelled
Canary release job / Release for win-arm64 (push) Has been cancelled
Canary release job / Release for win-x64 (push) Has been cancelled
Canary release job / Release MacOS universal (push) Has been cancelled
Additionally added a script to push them to Ryubing GitLab package registry. This script is my use only since it assumes you have the necessary authentication locally & on the server. TODO: figure out a way to get proper versioning for them.
19 lines
No EOL
298 B
Bash
19 lines
No EOL
298 B
Bash
function pub {
|
|
dotnet publish -c release
|
|
}
|
|
|
|
function package {
|
|
cd src/$1
|
|
pub
|
|
mv bin/Release/$1.1.0.0.nupkg ../../pkgs/$1.1.0.0.nupkg
|
|
cd ../../
|
|
}
|
|
|
|
rm -rf pkgs
|
|
mkdir pkgs
|
|
|
|
package ARMeilleure
|
|
package Ryujinx.Common
|
|
package Ryujinx.Memory
|
|
|
|
dotnet nuget push pkgs/*.nupkg --source RyubingPkgs |