update #25
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright (c) ONNX Project Contributors | |
# | |
# SPDX-License-Identifier: Apache-2.0 | |
name: Caller Workflow | |
on: [push, pull_request] | |
jobs: | |
call-workflow-ubuntu: | |
strategy: | |
matrix: | |
os: ['ubuntu-latest'] | |
uses: andife/onnx/.github/workflows/release_linux_x86_64.yml@20240710_start_reuseableworkflow | |
with: | |
node: "14" | |
os: "linux" | |
# call-workflow-win: | |
# strategy: | |
# matrix: | |
# os: ['windows-latest'] | |
# uses: andife/onnx/.github/workflows/release_win.yml@20240710_start_reuseableworkflow | |
# with: | |
# node: "14" | |
# os: "win" | |
call-workflow-mac: | |
strategy: | |
matrix: | |
os: ['mac-latest'] | |
uses: andife/onnx/.github/workflows/release_mac.yml@20240710_start_reuseableworkflow | |
with: | |
node: "14" | |
os: "mac" | |
github-release: | |
name: Prepare Files for Github Release | |
runs-on: ubuntu-latest | |
needs: [call-workflow-ubuntu, call-workflow-mac] | |
permissions: | |
contents: write # IMPORTANT: mandatory for making GitHub Releases | |
id-token: write # IMPORTANT: mandatory for sigstore | |
steps: | |
- uses: actions/download-artifact@v4 | |
with: | |
pattern: wheels* # TODO change back to python-wheels? | |
path: dist | |
merge-multiple: true | |
- name: Sign the dists with Sigstore #/home/runner/work/onnx/onnx/dist/*.tar.gz | |
uses: sigstore/[email protected] | |
with: | |
inputs: >- | |
/home/runner/work/onnx/onnx/dist/*.whl | |
- name: Rename files # to match new file extension https://github.com/sigstore/sigstore-python/blob/main/CHANGELOG.md#changed | |
run: | | |
sudo apt install mmv | |
mmv "/home/runner/work/onnx/onnx/dist/*.sigstore" /home/runner/work/onnx/onnx/dist/#1.sigstore.json | |
- name: Upload artifact signatures to GitHub Release | |
if: startsWith(github.ref, 'refs/tags/') # only publish to PyPI on tag pushes | |
env: | |
GITHUB_TOKEN: ${{ github.token }} | |
# Upload to GitHub Release using the `gh` CLI. | |
# `dist/` contains the built packages, and the | |
# sigstore-produced signatures and certificates. | |
run: >- | |
gh release upload | |
'${{ github.ref_name }}' dist/** | |
--repo '${{ github.repository }}' |