Skip to content

Commit

Permalink
build: bump download-artifact version, move back to shared runners
Browse files Browse the repository at this point in the history
  • Loading branch information
ssimek committed Sep 5, 2024
1 parent fabe64e commit b1e4199
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build-test-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
jobs:
build:
name: Build and Test
runs-on: [ self-hosted, macos, dotnet ]
runs-on: macos
env:
DOTNET_NOLOGO: true
DOTNET_SYSTEM_GLOBALIZATION_INVARIANT: true
Expand All @@ -16,7 +16,7 @@ jobs:
outputs:
is-release: ${{ steps.get-version.outputs.is-release }}
version: ${{ steps.get-version.outputs.version }}

steps:
- name: Checkout sources
uses: actions/checkout@v2
Expand Down Expand Up @@ -48,11 +48,11 @@ jobs:

publish-test-results:
name: Publish test results
runs-on: [ self-hosted, macos, dotnet ]
runs-on: macos
needs: build
steps:
- name: Fetch Test Artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: test-results
path: ${{runner.temp}}/res
Expand All @@ -65,14 +65,14 @@ jobs:

publish-nuget:
name: Publish NuGet
runs-on: [ self-hosted, macos, dotnet ]
runs-on: macos
env:
DOTNET_NOLOGO: true
needs: build

steps:
- name: Fetch Package Artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: packages
path: ${{runner.temp}}/packages
Expand Down

0 comments on commit b1e4199

Please sign in to comment.