Compare commits
13 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 7133ec1560 | |||
| 2f92f59a50 | |||
| 97a4da7531 | |||
| c577f15f91 | |||
| b4d55ddfc0 | |||
| f51aad91fa | |||
| cab7ac35ae | |||
| 86bb120e32 | |||
| c728509978 | |||
| 7bd2429a43 | |||
| d41d9f1791 | |||
| 1a8a82c106 | |||
| 414c74be84 |
@@ -59,10 +59,14 @@ jobs:
|
||||
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
|
||||
|
||||
55
HISTORY.md
55
HISTORY.md
@@ -4,6 +4,61 @@ Changelog
|
||||
|
||||
(unreleased)
|
||||
------------
|
||||
|
||||
Fix
|
||||
~~~
|
||||
- Set default push NuGet source, refs NOISSUE. [Simon Diesenreiter]
|
||||
|
||||
|
||||
0.11.3 (2025-10-26)
|
||||
-------------------
|
||||
|
||||
Fix
|
||||
~~~
|
||||
- Reenable all NuGet sources, refs NOISSUE. [Simon Diesenreiter]
|
||||
|
||||
Other
|
||||
~~~~~
|
||||
|
||||
|
||||
0.11.2 (2025-10-26)
|
||||
-------------------
|
||||
|
||||
Fix
|
||||
~~~
|
||||
- Even more debug output during releases, refs NOISSUE. [Simon
|
||||
Diesenreiter]
|
||||
|
||||
Other
|
||||
~~~~~
|
||||
|
||||
|
||||
0.11.1 (2025-10-26)
|
||||
-------------------
|
||||
|
||||
Fix
|
||||
~~~
|
||||
- More debug output during releases, refs NOISSUE. [Simon Diesenreiter]
|
||||
|
||||
Other
|
||||
~~~~~
|
||||
- Ci: reenable one of the NuGet sources, refs NOISSUE. [Simon
|
||||
Diesenreiter]
|
||||
|
||||
|
||||
0.11.0 (2025-10-26)
|
||||
-------------------
|
||||
- Revert "feat: add two dimensional data walker, refs: NOISSUE" [Simon
|
||||
Diesenreiter]
|
||||
|
||||
This reverts commit 414c74be84aecd3aff2f7abbb6cab88f50034d84.
|
||||
- Ci: disable nuget feeds for now, refs NOISSUE. [Simon Diesenreiter]
|
||||
- Feat: add two dimensional data walker, refs: NOISSUE. [Simon
|
||||
Diesenreiter]
|
||||
|
||||
|
||||
0.10.0 (2024-12-13)
|
||||
-------------------
|
||||
- Feat: add support for custom token types and longs, ref: NOISSUE.
|
||||
[Simon Diesenreiter]
|
||||
|
||||
|
||||
@@ -1 +1 @@
|
||||
0.10.0
|
||||
0.11.4
|
||||
|
||||
@@ -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="gitea-projects" />
|
||||
</config>
|
||||
</configuration>
|
||||
|
||||
Reference in New Issue
Block a user