Skip to content

Commit

Permalink
ci: move checkout to first step
Browse files Browse the repository at this point in the history
  • Loading branch information
dansiegel committed Jun 4, 2023
1 parent 1c5c747 commit 238b1a6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,9 @@ jobs:
needs: [build-prism-core, build-prism-wpf, build-prism-forms, build-prism-uno, build-prism-maui]
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Download Core
uses: actions/download-artifact@v3
with:
Expand Down Expand Up @@ -125,9 +128,6 @@ jobs:
name: Maui
path: artifacts\Maui

- name: Checkout
uses: actions/checkout@v3

- name: Consolidate Artifacts
run: build\consolidate-artifacts.ps1
shell: powershell
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/start-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,9 @@ jobs:
needs: [build-prism-core, build-prism-wpf, build-prism-forms, build-prism-uno]
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Download Core
uses: actions/download-artifact@v3
with:
Expand Down Expand Up @@ -113,9 +116,6 @@ jobs:
name: Maui
path: artifacts\Maui

- name: Checkout
uses: actions/checkout@v3

- name: Consolidate Artifacts
run: build\consolidate-artifacts.ps1
shell: powershell
Expand Down

0 comments on commit 238b1a6

Please sign in to comment.