Compare commits
No commits in common. "master" and "1.2" have entirely different histories.
3 changed files with 36 additions and 3 deletions
30
.github/workflows/dotnet.yml
vendored
Normal file
30
.github/workflows/dotnet.yml
vendored
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
name: .NET
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [ master ]
|
||||||
|
pull_request:
|
||||||
|
branches: [ master ]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: Setup .NET
|
||||||
|
uses: actions/setup-dotnet@v1
|
||||||
|
with:
|
||||||
|
dotnet-version: 3.1.x
|
||||||
|
- name: Restore dependencies
|
||||||
|
run: dotnet restore
|
||||||
|
- name: Build
|
||||||
|
run: dotnet build --no-restore
|
||||||
|
- name: Test
|
||||||
|
run: dotnet test --no-build --verbosity normal
|
||||||
|
- name: capture build artifacts
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: Build
|
||||||
|
path: RepoFullDownloader-Core/bin/Debug/netcoreapp3.1/
|
2
LICENSE
2
LICENSE
|
@ -1,6 +1,6 @@
|
||||||
MIT License
|
MIT License
|
||||||
|
|
||||||
Copyright (c) 2022 KawaiiZenbo
|
Copyright (c) 2021 the KawaiiZenbos/the Gum Hive
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# RepoFullDownloader
|
# RepoFullDownloader-Core
|
||||||
Cross-Platform Cydia/Installer repo downloader
|
Cross-Platform Cydia/Installer repo downloader
|
||||||
|
|
||||||
## Requirements
|
## Requirements
|
||||||
|
@ -8,3 +8,6 @@ An internet connection.
|
||||||
## Command Line Options
|
## Command Line Options
|
||||||
`dotnet RepoFullDownloader-Core.dll <url>`
|
`dotnet RepoFullDownloader-Core.dll <url>`
|
||||||
Running with no URL will use the repo list from `repos.txt`
|
Running with no URL will use the repo list from `repos.txt`
|
||||||
|
|
||||||
|
## Binaries
|
||||||
|
https://nightly.link/kawaiizenbo/RepoFullDownloader-Core/workflows/dotnet/master/Build.zip
|
||||||
|
|
Loading…
Add table
Reference in a new issue