Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastianKuesters committed Jun 18, 2024
2 parents 924a6c3 + c6748ea commit 27d7329
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 9 deletions.
6 changes: 0 additions & 6 deletions .github/actions/dotnet/action.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
name: "Build .NET"
description: "Build .NET"
inputs:
wemogy-packages-token:
description: "The token to use to authenticate with the wemogy-packages service"
required: true
version:
description: "The version of the build"
required: true
Expand All @@ -17,9 +14,6 @@ runs:
- uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
source-url: https://nuget.pkg.github.com/wemogy/index.json
env:
NUGET_AUTH_TOKEN: ${{ inputs.wemogy-packages-token }}
- name: Restore dependencies
working-directory: src
shell: bash
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ jobs:
- name: Build .NET
uses: ./.github/actions/dotnet
with:
wemogy-packages-token: ${{ secrets.WEMOGY_PACKAGES_TOKEN }}
version: ${{ steps.release-version.outputs.next-version }}${{ github.event.inputs.version && 'pre' || '' }}

build-docs:
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ jobs:
- name: Build .NET
uses: ./.github/actions/dotnet
with:
wemogy-packages-token: ${{ secrets.WEMOGY_PACKAGES_TOKEN }}
version: ${{ steps.release-version.outputs.next-version }}${{ github.event.inputs.version && 'pre' || '' }}
- name: Create Nuget package(s)
run: dotnet pack --no-build --configuration Release /p:VersionPrefix=${{ steps.release-version.outputs.next-version }}${{ github.event.inputs.version && 'pre' || '' }}
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ jobs:
- name: Build .NET
uses: ./.github/actions/dotnet
with:
wemogy-packages-token: ${{ secrets.WEMOGY_PACKAGES_TOKEN }}
version: ${{ steps.release-version.outputs.next-version }}${{ github.event.inputs.version && 'pre' || '' }}

- name: Test .NET Solution
Expand Down

0 comments on commit 27d7329

Please sign in to comment.