Skip to content

Commit

Permalink
Merge pull request #59 from rapidsai/jakirkham/add_gha_upload_stub
Browse files Browse the repository at this point in the history
Add GHA workflow stub for uploading packages
  • Loading branch information
jakirkham authored Apr 18, 2024
2 parents a322537 + 1234639 commit 9c5cb3c
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/upload.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Upload conda packages
on:
workflow_run:
workflows:
- Build conda package
types:
- completed

jobs:
on-success:
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion == "success" }}
steps:
- run: |
echo "Build passing"
exit 0
on-failure:
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion == "failure" }}
steps:
- run: |
echo "Build failing"
exit 1

0 comments on commit 9c5cb3c

Please sign in to comment.