Skip to content

Commit

Permalink
fix: Add missing job name for .github\workflows\binaries.yml (ivy-l…
Browse files Browse the repository at this point in the history
…lc#26867)

Co-authored-by: vedpatwardhan <[email protected]>
  • Loading branch information
2 people authored and druvdub committed Oct 14, 2023
1 parent b432bed commit 43fbf6c
Showing 1 changed file with 15 additions and 14 deletions.
29 changes: 15 additions & 14 deletions .github/workflows/binaries.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
name: pypi
name: release-binaries
on:
workflow_call:
jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️Binaries
uses: actions/checkout@v2
with:
repository: unifyai/binaries
path: binaries
persist-credentials: false
release-binaries:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️Binaries
uses: actions/checkout@v2
with:
repository: unifyai/binaries
path: binaries
persist-credentials: false

- name: Add Tag to Binaries
run: |
cd binaries
git tag ${{ github.ref_name }}
git push origin ${{ github.ref_name }}
- name: Add Tag to Binaries
run: |
cd binaries
git tag ${{ github.ref_name }}
git push origin ${{ github.ref_name }}

0 comments on commit 43fbf6c

Please sign in to comment.