Skip to content

Commit 00e000d

Browse files
authored
Merge pull request #5 from ERGO-Code/highs-releases-tags
Target workflow dispatch
2 parents a9bc82d + 193f04e commit 00e000d

File tree

8 files changed

+34
-7
lines changed

8 files changed

+34
-7
lines changed

.github/workflows/cmake-fetch-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
fail-fast: false
1010
matrix:
1111
os: [ubuntu-latest]
12-
branch: [master, latest, cmake]
12+
branch: [master, latest]
1313

1414
steps:
1515
- uses: actions/checkout@v4

.github/workflows/cmake-find-build-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
fail-fast: false
1010
matrix:
1111
os: [ubuntu-latest]
12-
branch: [master, latest, cmake]
12+
branch: [master, latest]
1313

1414
steps:
1515
- uses: actions/checkout@v4

.github/workflows/cmake-find-build-macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
fail-fast: false
1010
matrix:
1111
os: [macos-latest]
12-
branch: [master, latest, cmake]
12+
branch: [master, latest]
1313

1414
steps:
1515
- uses: actions/checkout@v4

.github/workflows/cmake-find-build-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
fail-fast: false
1010
matrix:
1111
os: [windows-latest]
12-
branch: [master, latest, cmake]
12+
branch: [master, latest]
1313

1414
steps:
1515
- uses: actions/checkout@v4

.github/workflows/cmake-find-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
fail-fast: false
1010
matrix:
1111
os: [ubuntu-latest]
12-
branch: [master, latest, cmake]
12+
branch: [master, latest]
1313

1414
steps:
1515
- uses: actions/checkout@v4

.github/workflows/cmake-find-macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
fail-fast: false
1010
matrix:
1111
os: [macos-latest]
12-
branch: [master, latest, cmake]
12+
branch: [master, latest]
1313

1414
steps:
1515
- uses: actions/checkout@v4

.github/workflows/cmake-find-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
fail-fast: false
1010
matrix:
1111
os: [windows-latest]
12-
branch: [master, latest, cmake]
12+
branch: [master, latest]
1313

1414
steps:
1515
- uses: actions/checkout@v4

.github/workflows/dispatch.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Target Workflow
2+
3+
on:
4+
workflow_dispatch:
5+
repository_dispatch:
6+
types: [Integration-with-Automation]
7+
push:
8+
branches:
9+
- '*'
10+
run-name: ${{ github.actor }} is testing out GitHub Actions 🚀
11+
12+
jobs:
13+
build:
14+
runs-on: ubuntu-latest
15+
16+
steps:
17+
18+
- name: Check out repository code
19+
uses: actions/checkout@v4
20+
21+
- name: Run a one-line script
22+
run: echo Hello, world!
23+
24+
- name: Run a multi-line script
25+
run: |
26+
echo ${{ github.actor }} Hello !
27+
echo test, and deploy your project.

0 commit comments

Comments
 (0)