From 9fe897fcd8165e9e6f8026e9b0a80bb5dc60a044 Mon Sep 17 00:00:00 2001 From: Dipika Sikka Date: Wed, 3 Apr 2024 14:33:29 +0000 Subject: [PATCH] cleanup --- .github/workflows/build-whl.yml | 44 ++++++++++++++++----------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/.github/workflows/build-whl.yml b/.github/workflows/build-whl.yml index 33b5d175369..84dce9bc634 100644 --- a/.github/workflows/build-whl.yml +++ b/.github/workflows/build-whl.yml @@ -27,27 +27,27 @@ jobs: outputs: wheel: ${{ steps.push-wheel.outputs.wheel }} steps: - - name: Checkout code - uses: actions/checkout@v3 + - 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: 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 }} - + - 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 }} +