Skip to content

Commit

Permalink
Update workflow names in workflow calls
Browse files Browse the repository at this point in the history
  • Loading branch information
brunokc committed Jul 17, 2023
1 parent 081db20 commit 7125757
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/new-pve-kernel-release-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,15 +97,15 @@ jobs:
name: Build new kernel
needs: check-for-new-kernel
if: needs.check-for-new-kernel.outputs.new-kernel-available == 'true'
uses: ./.github/workflows/build-pve-kernel-container.yml
uses: ./.github/workflows/build-pve-kernel.yml
with:
branch: ${{ inputs.branch }}

release-new-kernel:
name: Release new kernel
needs: [check-for-new-kernel, build-kernel]
if: needs.build-kernel.outputs.build-successful == 'true'
uses: ./.github/workflows/release.yml
uses: ./.github/workflows/release-kernel.yml
with:
token: ${{ env.TOKEN }}
artifact-name: ${{ needs.build-kernel.outputs.artifacts-name }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/trigger-kernel-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
matrix:
branch: ['master', 'pve-kernel-5.15']
uses: ./.github/workflows/on-new-pve-kernel-releases.yml
uses: ./.github/workflows/new-pve-kernel-release-check.yml
with:
branch: ${{ matrix.branch }}
secrets:
Expand Down

0 comments on commit 7125757

Please sign in to comment.