Compare commits

..

7 Commits

Author SHA1 Message Date
fef6b580e3 Auth for nuget tooling
Some checks failed
Build on push / prepare (push) Successful in 27s
Build on push / build (push) Successful in 14s
Build on push / test (push) Failing after 2s
2026-02-14 17:42:04 +01:00
0f48552783 Use local action
Some checks failed
Build on push / prepare (push) Successful in 26s
Build on push / build (push) Successful in 31s
Build on push / test (push) Failing after 2s
2026-02-14 17:26:55 +01:00
a06557dc48 use local action
Some checks failed
Build on push / prepare (push) Failing after 1s
Build on push / build (push) Has been skipped
Build on push / test (push) Has been skipped
2026-02-14 17:24:54 +01:00
22d0361afe Fixed install
Some checks failed
Build on push / prepare (push) Successful in 28s
Build on push / build (push) Successful in 33s
Build on push / test (push) Failing after 2s
2026-02-14 17:15:07 +01:00
008de6593c Refixed action
Some checks failed
Build on push / prepare (push) Successful in 27s
Build on push / build (push) Successful in 34s
Build on push / test (push) Failing after 2s
2026-02-14 17:13:07 +01:00
c6465b70d1 test local action
Some checks failed
Build on push / prepare (push) Failing after 1s
Build on push / build (push) Has been skipped
Build on push / test (push) Has been skipped
2026-02-14 17:09:05 +01:00
f3cff58707 Fixed tool install
Some checks failed
Build on push / prepare (push) Successful in 6s
Build on push / build (push) Failing after 5s
Build on push / test (push) Has been skipped
2026-02-14 16:58:03 +01:00
3 changed files with 21 additions and 6 deletions

View File

@@ -10,7 +10,7 @@ jobs:
runs-on: [runner] runs-on: [runner]
container: git.sh-edraft.de/sh-edraft.de/act-runner:latest container: git.sh-edraft.de/sh-edraft.de/act-runner:latest
steps: steps:
- uses: https://git.sh-edraft.de/sh-edraft.de/actions/set-version@v1 - uses: https://git.sh-edraft.de/sh-edraft.de/actions/set-version@dev
with: with:
version_suffix: dev version_suffix: dev
env: env:
@@ -51,16 +51,19 @@ jobs:
needs: build needs: build
container: git.sh-edraft.de/sh-edraft.de/act-runner:latest container: git.sh-edraft.de/sh-edraft.de/act-runner:latest
steps: steps:
- name: Install set-version tool - name: Configure nuget
run: |
dotnet nuget add source --name git_sh-edraft_de --username ${{ secrets.CI_USERNAME }} --password ${{ secrets.CI_ACCESS_TOKEN }} --store-password-in-clear-text https://git.sh-edraft.de/api/packages/sh-edraft.de/nuget/index.json
- name: Install package-cleanup tool
shell: bash shell: bash
run: | run: |
dotnet tool install \ dotnet tool install \
--tool-path .tools \ --tool-path .tools \
package-cleanup \ sh.actions.package-cleanup \
--version 1.0.0 \ --source sh-git_sh-edraft_de
--add-source https://git.sh-edraft.de/api/packages/sh-edraft.de/nuget/index.json
- name: Run set-version - name: Run package-cleanup
shell: bash shell: bash
run: | run: |
./.tools/package-cleanup ./.tools/package-cleanup

View File

@@ -0,0 +1,6 @@
namespace sh.actions.package_cleanup.Service;
public class GiteaPackageService : IGiteaPackageService
{
}

View File

@@ -0,0 +1,6 @@
namespace sh.actions.package_cleanup.Service;
public interface IGiteaPackageService
{
}