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
9 changes: 8 additions & 1 deletion .github/workflows/ci-tag-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,9 +106,14 @@ jobs:
with:
name: configurationmigrationtool_xrmtoolbox
path: '${{ env.xtbpublishlocation }}'
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: zip artifact # This would actually build your project, using zip for an example artifact
run: |
zip -r configurationmigrationtool${{ github.ref_name }}.zip configurationmigrationtool

- name: Create Release
id: create_release
uses: actions/create-release@v1
Expand All @@ -126,7 +131,9 @@ jobs:
FILENAME=$(basename "$NUPKG_PATH")
echo "nupkg_path=$NUPKG_PATH" >> "$GITHUB_OUTPUT"
echo "filename=$FILENAME" >> "$GITHUB_OUTPUT" # Make it available to subsequent steps

- name: Push To NuGet Registry
run: |
dotnet nuget push ./xtb/*.nupkg --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json
- name: Upload NuGet Package Release Asset
id: upload-nuget-release-asset
uses: actions/upload-release-asset@v1
Expand Down
53 changes: 0 additions & 53 deletions .github/workflows/tag-with-gitversion.yml

This file was deleted.

Loading