forked from irixaligned/duckstation-uwp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e69b68a
commit 0b5ec03
Showing
1 changed file
with
14 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,20 @@ | ||
name: Your Workflow | ||
|
||
on: | ||
workflow_dispatch | ||
name: Clone and Run Script | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
your_job: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Run YAML to Github Output Action | ||
id: yaml-output | ||
uses: christian-ci/action-yaml-github-output@v2 | ||
uses: actions/checkout@v2 | ||
with: | ||
file_path: .github/workflows/Test2.yaml | ||
repository: izzy2fancy/AM2R-Autopatcher-Android # Replace 'owner/repo-name' with the repository you want to clone | ||
ref: main # Replace 'main' with the branch you want to clone | ||
|
||
- name: Run Script | ||
run: | | ||
cd AM2R-Autopatcher-Android | ||
bash patcher.sh |