Skip to content

Commit f3aa3c0

Browse files
committed
check
1 parent ccfb679 commit f3aa3c0

File tree

2 files changed

+12
-21
lines changed

2 files changed

+12
-21
lines changed

.github/workflows/check-manual.yml

Lines changed: 10 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -19,24 +19,19 @@ on:
1919
default: true
2020
required: true
2121
type: boolean
22-
23-
env:
24-
check: ${{ secrets.CHECK }}
25-
2622
jobs:
2723
linux:
2824
if: ${{ inputs.on-linux }}
2925
uses: ./.github/workflows/check.yml
3026
with:
3127
os: ubuntu-latest
32-
check: ${{ env.check }}
33-
# windows:
34-
# if: ${{ inputs.on-windows }}
35-
# uses: ./.github/workflows/check.yml
36-
# with:
37-
# os: windows-latest
38-
# mac:
39-
# if: ${{ inputs.on-mac }}
40-
# uses: ./.github/workflows/check.yml
41-
# with:
42-
# os: macos-latest
28+
windows:
29+
if: ${{ inputs.on-windows }}
30+
uses: ./.github/workflows/check.yml
31+
with:
32+
os: windows-latest
33+
mac:
34+
if: ${{ inputs.on-mac }}
35+
uses: ./.github/workflows/check.yml
36+
with:
37+
os: macos-latest

.github/workflows/check.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,24 +6,20 @@ on:
66
os:
77
required: true
88
type: string
9-
check:
10-
required: false
11-
type: string
129

1310
env:
1411
TEST_BINARIES: ${{ format('test_binaries_{0}', inputs.os) }}
12+
CHECK: ${{ secrets.CHEK }}
1513

1614
jobs:
1715
check:
1816
runs-on: ${{ inputs.os }}
19-
env:
20-
CHECK: check_exists
2117
steps:
2218
- name: Cache
2319
# Caches dependencies for rust (debug or test), does not cache increments
2420
uses: andreievg/rust-cache-cloud@v1
2521
with:
26-
google_drive_keys: ${{ inputs.check }}
22+
google_drive_keys: ${{ env.CHECK }}
2723
google_drive_folder_id: 1m3jO_1J_dWFqdi3ZmBAEsR3NiyfbnWD_
2824

2925

0 commit comments

Comments
 (0)