Skip to content

Commit 3975a63

Browse files
committed
add workflow to build nvcr image
1 parent 13b05a9 commit 3975a63

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

.github/workflows/dev-image.yaml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: dev-image
2+
on:
3+
push:
4+
branches: [ "staging" ]
5+
pull_request:
6+
branches: [ "staging" ]
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v4
13+
- name: "Free up disk space"
14+
uses: ./.github/actions/free-up-disk-space
15+
- name: Build image
16+
run: |
17+
docker build -t fms-hf-tuning:dev . -f build/nvcr.Dockerfile

0 commit comments

Comments
 (0)