-
Notifications
You must be signed in to change notification settings - Fork 148
53 lines (47 loc) · 1.2 KB
/
build-whl.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
name: build-whl
on:
workflow_call:
inputs:
build_label:
description: "requested runner label"
type: string
required: true
dev:
type: bool
required: true
release:
type: bool
required: true
name:
type: string
internal:
type: bool
filename:
type: string
required: true
jobs:
build:
runs-on: ${{ inputs.build_label }}
outputs:
wheel: ${{ steps.push-wheel.outputs.wheel }}
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Login to s3
uses: aws-actions/configure-aws-credentials@v2
with:
role-to-assume: ${{ secrets.AWS_WEBIDENTITY_FOR_GITHUB_ACTIONS }}
aws-region: us-east-1
- name: Build PyPi Wheel
id: build-wheel
uses: neuralmagic/nm-actions/actions/pypi_build@main
with:
dev: ${{ inputs.dev }}
release: ${{ inputs.release }}
name: ${{ inputs.name }}
- name: Push to s3 bucket
id: push-wheel
uses: neuralmagic/nm-actions/actions/s3_push@main
with:
filename: ${{ inputs.filename }}
internal: ${{ inputs.internal }}