Skip to content

Commit 4164b92

Browse files
committed
update
1 parent 3b1ef9a commit 4164b92

File tree

5 files changed

+9
-32
lines changed

5 files changed

+9
-32
lines changed

.github/workflows/create_release.yml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,7 @@ jobs:
2020
matrix:
2121
os: ['ubuntu-latest']
2222
uses: andife/onnx/.github/workflows/release_linux_x86_64.yml@20240710_start_reuseableworkflow
23-
with:
24-
node: "14"
23+
with:
2524
os: "linux_x86_64"
2625

2726

@@ -30,8 +29,7 @@ jobs:
3029
matrix:
3130
os: ['ubuntu-latest']
3231
uses: andife/onnx/.github/workflows/release_linux_aarch64.yml@20240710_start_reuseableworkflow
33-
with:
34-
node: "14"
32+
with:
3533
os: "linux_aarch64"
3634

3735
# call-workflow-win:
@@ -48,8 +46,7 @@ jobs:
4846
matrix:
4947
os: ['mac-latest']
5048
uses: andife/onnx/.github/workflows/release_mac.yml@20240710_start_reuseableworkflow
51-
with:
52-
node: "14"
49+
with:
5350
os: "mac"
5451

5552
# TODO: each for every OS?
@@ -66,8 +63,8 @@ jobs:
6663
# # Upload provenance to a new release
6764
# upload-assets: true
6865

69-
github-release:
70-
name: Prepare Files for Github Release
66+
prepare-release:
67+
name: Prepare Files for Release (Github, pypi)
7168
runs-on: ubuntu-latest
7269
needs: [call-workflow-ubuntu_x86, call-workflow-ubuntu_aarch64, call-workflow-mac]
7370
if: always() && (needs.call-workflow-ubuntu_x86.result == 'success') && (needs.call-workflow-ubuntu_aarch64.result == 'success') && ((needs.call-workflow-mac.result == 'success'))

.github/workflows/release_linux_aarch64.yml

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -6,23 +6,12 @@ name: LinuxRelease_aarch64
66

77
on: # Specifies the event triggering the workflow
88
workflow_call: # Indicates that this is a reusable workflow
9-
inputs:
10-
node:
11-
required: true
12-
type: string
9+
inputs:
1310
os:
1411
required: true
1512
type: string
1613

17-
# on:
18-
# schedule:
19-
# # Run weekly on Monday 00:00
20-
# - cron: '00 00 * * MON'
21-
# push:
22-
# branches: [main, rel-*]
23-
# pull_request:
24-
# branches: [main, rel-*]
25-
# workflow_dispatch:
14+
2615

2716
permissions: # set top-level default permissions as security best practice
2817
contents: read

.github/workflows/release_linux_x86_64.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,7 @@ name: LinuxRelease_x86_64
66

77
on: # Specifies the event triggering the workflow
88
workflow_call: # Indicates that this is a reusable workflow
9-
inputs:
10-
node:
11-
required: true
12-
type: string
9+
inputs:
1310
os:
1411
required: true
1512
type: string

.github/workflows/release_mac.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,6 @@ name: MacRelease
77
on: # Specifies the event triggering the workflow
88
workflow_call: # Indicates that this is a reusable workflow
99
inputs:
10-
node:
11-
required: true
12-
type: string
1310
os:
1411
required: true
1512
type: string

.github/workflows/release_win.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,7 @@ name: WindowsRelease
66

77
on: # Specifies the event triggering the workflow
88
workflow_call: # Indicates that this is a reusable workflow
9-
inputs:
10-
node:
11-
required: true
12-
type: string
9+
inputs:
1310
os:
1411
required: true
1512
type: string

0 commit comments

Comments
 (0)