Skip to content

Commit

Permalink
ci: move out checkout action from shared action
Browse files Browse the repository at this point in the history
  • Loading branch information
lars-berger committed Dec 29, 2023
1 parent c4abe59 commit aab8d81
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 0 additions & 4 deletions .github/actions/release-with-artifacts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,6 @@ inputs:
runs:
using: composite
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Download artifacts (win-x64)
uses: actions/download-artifact@v4
with:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/pre-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ jobs:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0

- uses: ./.github/actions/release-with-artifacts
with:
is-prerelease: true
4 changes: 4 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ jobs:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0

- uses: ./.github/actions/release-with-artifacts
with:
is-prerelease: false

0 comments on commit aab8d81

Please sign in to comment.