Skip to content

Commit

Permalink
Enabled github actions workflow to publish artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
skalyanaraman57 committed Jul 5, 2024
1 parent 01e29a1 commit 7c5bad3
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/publish-artifact.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Publish Python Package

on:
push:
branches:
- feature/enable-github-actions

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Install dependencies
run: |
cd nvtrust/guest_tools/gpu_verifier/local_gpu_verifier
pip3 install .
- name: Build the package
run: |
python3 -m build

0 comments on commit 7c5bad3

Please sign in to comment.