Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,20 @@ jobs:
assemblyVersion: ${{ github.event.release.tag_name }}
fileVersion: ${{ github.event.release.tag_name }}
informationalVersion: ${{ github.event.release.tag_name }}-${{ github.sha }}

- name: Build
run: |
dotnet build -c Release Migrator.slnx

- name: Upload to release
uses: AButler/[email protected]
with:
files: 'src/Migrator/bin/Release/net9.0/DotNetProjects.Migrator.${{ github.event.release.tag_name }}.nupkg'
repo-token: ${{ secrets.GITHUB_TOKEN }}

- name: Publish to nuget
run: |
find . -type f -name *.nupkg -print0 | xargs -0 -I pkg dotnet nuget push pkg -k $nuget_api_key -s "https://api.nuget.org/v3/index.json" --skip-duplicate
env:
nuget_api_key: ${{ secrets.NUGET_API_KEY }}

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Kannst du das Oracle Passwort auch als secret hinterlegen?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

könnte ich, ist aber unnötig

working-directory: ./src/Migrator/bin/Release/net9.0/
19 changes: 0 additions & 19 deletions HOWTOBUILD.md

This file was deleted.

51 changes: 0 additions & 51 deletions Migrator.sln

This file was deleted.

5 changes: 1 addition & 4 deletions Migrator.slnx
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,10 @@
<Project Path="src/Migrator/DotNetProjects.Migrator.csproj" />
</Folder>
<Folder Name="/Extras/">
<File Path="doc/README.txt" />
<File Path="doc/TODO.txt" />
<File Path="src/MigratorDotNet.snk" />
<File Path="README.md" />
</Folder>
<Folder Name="/Extras/.github/" />
<Folder Name="/Extras/.github/workflows/">
<File Path=".github/workflows/dotnet.yml" />
<File Path=".github/workflows/dotnetpull.yml" />
<File Path=".github/workflows/release.yml" />
</Folder>
Expand Down
File renamed without changes.
36 changes: 0 additions & 36 deletions appveyor.yml

This file was deleted.

2 changes: 0 additions & 2 deletions build.bat

This file was deleted.

61 changes: 0 additions & 61 deletions contrib/Migrator.Web/Default.aspx

This file was deleted.

133 changes: 0 additions & 133 deletions contrib/Migrator.Web/Default.aspx.cs

This file was deleted.

3 changes: 0 additions & 3 deletions contrib/Migrator.Web/Global.asax

This file was deleted.

Loading
Loading