Skip to content

Commit

Permalink
fix: add ci dispatch
Browse files Browse the repository at this point in the history
  • Loading branch information
Panakotta00 committed Oct 26, 2024
1 parent 438fe1d commit df8c3bf
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build-tools.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: Build Tools

on:
workflow_dispatch:
workflow_call:

jobs:
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: Build

on:
workflow_dispatch:
workflow_call:
inputs:
artifact_name:
Expand Down Expand Up @@ -93,8 +94,8 @@ jobs:
status: ${{ job.status }}
webhook-url: ${{ secrets.WEBHOOK_URL }}
artifact-url: "${{ steps.upload-win64.outputs.artifact-url }}"
artifact-name: 'FicsIt-Networks.zip'
artifact-name: '${{artifact_name}}.zip'

- name: Post Cleanup
if: ${{ !failure() }}
run: Remove-Item C:\actions-runner\_work\FicsIt-Networks\FicsIt-Networks\* -Recurse -Force -Confirm:$false -ErrorAction Ignore
run: Remove-Item ${{ github.workspace }}\* -Recurse -Force -Confirm:$false -ErrorAction Ignore
1 change: 1 addition & 0 deletions .github/workflows/gen-docs.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: Generate Documentation

on:
workflow_dispatch:
workflow_call:
inputs:
artifact_name:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/update-docs.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: Update Documentation

on:
workflow_dispatch:
workflow_call:
inputs:
artifact_name:
Expand Down

0 comments on commit df8c3bf

Please sign in to comment.