10 Commits

Author SHA1 Message Date
1d68b70fa5 release: version 0.11.8 🚀
Some checks failed
Upload Python Package / Create Release (push) Successful in 1m1s
SonarQube Scan / SonarQube Trigger (push) Failing after 1m2s
CI / tests_linux (9.0.X, ubuntu-latest) (push) Successful in 1m22s
Upload Python Package / deploy (push) Successful in 1m5s
2025-10-26 21:45:37 +01:00
e41d93e301 fix: more debug outputs, refs NOISSUE 2025-10-26 21:45:35 +01:00
19fdbe4dac release: version 0.11.7 🚀
Some checks failed
Upload Python Package / Create Release (push) Successful in 30s
SonarQube Scan / SonarQube Trigger (push) Failing after 34s
CI / tests_linux (9.0.X, ubuntu-latest) (push) Successful in 2m12s
Upload Python Package / deploy (push) Failing after 1m3s
2025-10-26 21:31:40 +01:00
ec1e65c03b fix: simplify push script, refs NOISSUE 2025-10-26 21:31:38 +01:00
f6701df12d release: version 0.11.6 🚀
Some checks failed
Upload Python Package / Create Release (push) Successful in 46s
SonarQube Scan / SonarQube Trigger (push) Failing after 1m6s
CI / tests_linux (9.0.X, ubuntu-latest) (push) Successful in 1m49s
Upload Python Package / deploy (push) Failing after 1m18s
2025-10-26 21:27:54 +01:00
610b628081 fix: bugfix, refs NOISSUE 2025-10-26 21:27:52 +01:00
f480334eee release: version 0.11.5 🚀
Some checks failed
Upload Python Package / Create Release (push) Successful in 32s
SonarQube Scan / SonarQube Trigger (push) Failing after 34s
CI / tests_linux (9.0.X, ubuntu-latest) (push) Successful in 2m4s
Upload Python Package / deploy (push) Failing after 1m55s
2025-10-26 21:24:02 +01:00
8608e4ddd1 fix: fix default push NuGet source, refs NOISSUE 2025-10-26 21:24:00 +01:00
7133ec1560 release: version 0.11.4 🚀
Some checks failed
Upload Python Package / Create Release (push) Successful in 1m2s
SonarQube Scan / SonarQube Trigger (push) Failing after 1m5s
CI / tests_linux (9.0.X, ubuntu-latest) (push) Successful in 1m26s
Upload Python Package / deploy (push) Failing after 1m28s
2025-10-26 21:19:52 +01:00
2f92f59a50 fix: set default push NuGet source, refs NOISSUE 2025-10-26 21:19:50 +01:00
4 changed files with 62 additions and 13 deletions

View File

@@ -57,16 +57,6 @@ jobs:
run: |
REPOSITORY_OWNER=$(echo "$GITHUB_REPOSITORY" | awk -F '/' '{print $1}')
REPOSITORY_NAME=$(echo "$GITHUB_REPOSITORY" | awk -F '/' '{print $2}' | tr '-' '_')
REPOSITORY_SOURCE_NAME=gitea-repo
if [ -z "$(dotnet nuget config get all | grep "/packages/${REPOSITORY_OWNER}/nuget/index.json")" ]; then
echo "source repo not configured yet"
dotnet nuget add source --name $REPOSITORY_SOURCE_NAME https://git.disi.dev/api/packages/$REPOSITORY_OWNER/nuget/index.json
else
echo "Picking correct source repo"
QUOTED_REPOSITORY_SOURCE_NAME=$(dotnet nuget config get all | grep "/packages/${REPOSITORY_OWNER}/nuget/index.json" | awk '{print $2}' | awk -F= '{print $2}')
REPOSITORY_SOURCE_NAME=${QUOTED_REPOSITORY_SOURCE_NAME:1:-1}
echo "chosen repo is $REPOSITORY_SOURCE_NAME"
fi
dotnet pack --include-symbols --include-source -p:PackageVersion=$(cat $REPOSITORY_NAME/VERSION) TextParser.sln
echo "dotnet nuget push -k <GITEA_PAT> --source $REPOSITORY_SOURCE_NAME $REPOSITORY_NAME/bin/Release/$REPOSITORY_NAME.$(cat $REPOSITORY_NAME/VERSION).symbols.nupkg"
dotnet nuget push -k $GITEA_PAT --source $REPOSITORY_SOURCE_NAME $REPOSITORY_NAME/bin/Release/$REPOSITORY_NAME.$(cat $REPOSITORY_NAME/VERSION).symbols.nupkg
echo "dotnet nuget push -k ${GITEA_PAT:0:-15} $REPOSITORY_NAME/bin/Release/$REPOSITORY_NAME.$(cat $REPOSITORY_NAME/VERSION).symbols.nupkg"
dotnet nuget push -k $GITEA_PAT $REPOSITORY_NAME/bin/Release/$REPOSITORY_NAME.$(cat $REPOSITORY_NAME/VERSION).symbols.nupkg

View File

@@ -5,10 +5,65 @@ Changelog
(unreleased)
------------
Fix
~~~
- More debug outputs, refs NOISSUE. [Simon Diesenreiter]
0.11.7 (2025-10-26)
-------------------
Fix
~~~
- Simplify push script, refs NOISSUE. [Simon Diesenreiter]
Other
~~~~~
0.11.6 (2025-10-26)
-------------------
Fix
~~~
- Bugfix, refs NOISSUE. [Simon Diesenreiter]
Other
~~~~~
0.11.5 (2025-10-26)
-------------------
Fix
~~~
- Fix default push NuGet source, refs NOISSUE. [Simon Diesenreiter]
Other
~~~~~
0.11.4 (2025-10-26)
-------------------
Fix
~~~
- Set default push NuGet source, refs NOISSUE. [Simon Diesenreiter]
Other
~~~~~
0.11.3 (2025-10-26)
-------------------
Fix
~~~
- Reenable all NuGet sources, refs NOISSUE. [Simon Diesenreiter]
Other
~~~~~
0.11.2 (2025-10-26)
-------------------

View File

@@ -1 +1 @@
0.11.3
0.11.8

View File

@@ -8,4 +8,8 @@
<add key="gitea-homelab" value="https://git.disi.dev/api/packages/Homelab/nuget/index.json" />
<add key="gitea-artifacts" value="https://git.disi.dev/api/packages/Artifacts/nuget/index.json" />
</packageSources>
<config>
<add key="DefaultPushSource" value="https://git.disi.dev/api/packages/Projects/nuget/index.json" />
</config>
</configuration>