Skip to content

Commit 9cba4e8

Browse files
committed
fix workflow composite action
1 parent 749d7b6 commit 9cba4e8

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

.github/workflows/build.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -18,25 +18,25 @@ jobs:
1818
with:
1919
go-version: '^1.18'
2020
- name: Build arm64 gui
21-
uses: ./.github/actions/build.yml
21+
uses: ./.github/actions/prepare
2222
with:
2323
id: darwin_arm64_gui
2424
cmd: make darwin_arm64_gui
2525
out: out/darwin_arm64_gui/yarr.app
2626
- name: Build amd64 gui
27-
uses: ./.github/actions/build.yml
27+
uses: ./.github/actions/prepare
2828
with:
2929
id: darwin_amd64_gui
3030
cmd: make darwin_amd64_gui
3131
out: out/darwin_amd64_gui/yarr.app
3232
- name: Build arm64
33-
uses: ./.github/actions/build.yml
33+
uses: ./.github/actions/prepare
3434
with:
3535
id: darwin_arm64
3636
cmd: make darwin_arm64
3737
out: out/darwin_arm64/yarr
3838
- name: Build amd64
39-
uses: ./.github/actions/build.yml
39+
uses: ./.github/actions/prepare
4040
with:
4141
id: darwin_amd64
4242
cmd: make darwin_amd64
@@ -57,25 +57,25 @@ jobs:
5757
with:
5858
version: 0.14.0
5959
- name: Build arm64 gui
60-
uses: ./.github/actions/build.yml
60+
uses: ./.github/actions/prepare
6161
with:
6262
id: windows_arm64_gui
6363
cmd: make windows_arm64_gui
6464
out: out/windows_arm64_gui/yarr.app
6565
- name: Build amd64 gui
66-
uses: ./.github/actions/build.yml
66+
uses: ./.github/actions/prepare
6767
with:
6868
id: windows_amd64_gui
6969
cmd: make windows_amd64_gui
7070
out: out/windows_amd64_gui/yarr.app
7171
- name: Build arm64
72-
uses: ./.github/actions/build.yml
72+
uses: ./.github/actions/prepare
7373
with:
7474
id: windows_arm64
7575
cmd: make windows_arm64
7676
out: out/windows_arm64/yarr
7777
- name: Build amd64
78-
uses: ./.github/actions/build.yml
78+
uses: ./.github/actions/prepare
7979
with:
8080
id: windows_amd64
8181
cmd: make windows_amd64
@@ -96,19 +96,19 @@ jobs:
9696
with:
9797
version: 0.14.0
9898
- name: Build amd64
99-
uses: ./.github/actions/build.yml
99+
uses: ./.github/actions/prepare
100100
with:
101101
id: windows_amd64
102102
cmd: make windows_amd64
103103
out: out/windows_amd64/yarr
104104
- name: Build arm64
105-
uses: ./.github/actions/build.yml
105+
uses: ./.github/actions/prepare
106106
with:
107107
id: windows_arm64
108108
cmd: make windows_arm64
109109
out: out/windows_arm64/yarr
110110
- name: Build armv7
111-
uses: ./.github/actions/build.yml
111+
uses: ./.github/actions/prepare
112112
with:
113113
id: windows_armv7
114114
cmd: make windows_armv7

0 commit comments

Comments
 (0)