Skip to content

Commit 55f2a11

Browse files
authored
Shorten names in create_release/release_linux for better UX in github ui (onnx#7027)
### Description <!-- - Describe your changes. --> ### Motivation and Context <!-- - Why is this change required? What problem does it solve? --> <!-- - If it fixes an open issue, please link to the issue here. --> --------- Signed-off-by: Andreas Fehlner <fehlner@arcor.de>
1 parent eacca4f commit 55f2a11

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.github/workflows/create_release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ concurrency:
6969

7070
jobs:
7171

72-
call-ubuntu:
72+
call-linux:
7373
if: github.event_name != 'pull_request' || contains(github.event.pull_request.labels.*.name, 'run release CIs')
7474
uses: ./.github/workflows/release_linux.yml
7575
with:
@@ -110,7 +110,7 @@ jobs:
110110
name: Check for Publish release build to pypi
111111
runs-on: ubuntu-latest
112112

113-
needs: [call-ubuntu, call-mac, call-win_x86, call-sdist]
113+
needs: [call-linux, call-mac, call-win_x86, call-sdist]
114114
if: (!contains(join(needs.*.result, ' '), 'skipped')) && (github.repository_owner == 'onnx') && startsWith(github.ref, 'refs/heads/rel-')
115115

116116
steps:
@@ -138,7 +138,7 @@ jobs:
138138
name: Check for Publish preview build to test.pypi-weekly
139139
runs-on: ubuntu-latest
140140

141-
needs: [call-ubuntu, call-mac, call-win_x86, call-win_arm64, call-sdist]
141+
needs: [call-linux, call-mac, call-win_x86, call-win_arm64, call-sdist]
142142
if: (!contains(join(needs.*.result, ' '), 'skipped')) && (github.event.inputs.publish_testpypi_weekly == 'yes') && (github.ref == 'refs/heads/main') && (github.repository_owner == 'onnx') && (github.event_name == 'workflow_dispatch')
143143

144144
steps:
@@ -191,7 +191,7 @@ jobs:
191191
name: Check for Publish release build to test.pypi (rc-candidates)
192192
runs-on: ubuntu-latest
193193

194-
needs: [call-ubuntu, call-mac, call-win_x86, call-win_arm64, call-sdist]
194+
needs: [call-linux, call-mac, call-win_x86, call-win_arm64, call-sdist]
195195
if: (!contains(join(needs.*.result, ' '), 'skipped')) && (github.event.inputs.publish_testpypi_release == 'yes') && startsWith(github.ref, 'refs/heads/rel') && (github.repository_owner == 'onnx') && (github.event_name == 'workflow_dispatch')
196196

197197
steps:
@@ -243,7 +243,7 @@ jobs:
243243
name: Check for Publish preview build to pypi-weekly
244244
runs-on: ubuntu-latest
245245

246-
needs: [call-ubuntu, call-mac, call-win_x86, call-win_arm64, call-sdist]
246+
needs: [call-linux, call-mac, call-win_x86, call-win_arm64, call-sdist]
247247
if: (!contains(join(needs.*.result, ' '), 'skipped')) && (github.event_name == 'schedule' || github.event.inputs.publish_pypi_weekly == 'yes') && (github.repository_owner == 'onnx')
248248

249249
steps:

.github/workflows/release_linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ permissions:
1818
contents: read
1919

2020
jobs:
21-
build-and-test:
21+
build:
2222
if: github.event_name != 'pull_request' || startsWith( github.base_ref, 'rel-') || contains( github.event.pull_request.labels.*.name, 'run release CIs')
2323

2424
strategy:

.github/workflows/release_mac.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
runs-on: macos-latest
2929
strategy:
3030
matrix:
31-
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.13t', '3.14-dev']
31+
python-version: ['3.14-dev', '3.13t', '3.13', '3.12', '3.11', '3.10', '3.9']
3232

3333
steps:
3434
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2

.github/workflows/release_win_aarch64.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414
required: true
1515
type: string
1616

17-
permissions: # set top-level default permissions as security best practice
17+
permissions:
1818
contents: read
1919

2020
jobs:

.github/workflows/release_win_x86_64.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414
required: true
1515
type: string
1616

17-
permissions: # set top-level default permissions as security best practice
17+
permissions:
1818
contents: read
1919

2020
jobs:

0 commit comments

Comments
 (0)