Skip to content

Commit cb16668

Browse files
committed
Update build-test-release.yml
1 parent 04250de commit cb16668

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

Diff for: .github/workflows/build-test-release.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414
default: "dev"
1515

1616
jobs:
17-
docker:
17+
docker-build:
1818
runs-on: DO
1919
# DO is a custom runner deployed on DigitalOcean, only available for workflows under the runpod-workers organization.
2020
# If you would like to use this workflow, you can replace DO with ubuntu-latest or any other runner.
@@ -39,6 +39,11 @@ jobs:
3939
push: true
4040
tags: ${{ vars.DOCKERHUB_REPO }}/${{ vars.DOCKERHUB_IMG }}:${{ (github.event_name == 'release' && github.event.release.tag_name) || (github.event_name == 'workflow_dispatch' && github.event.inputs.image_tag) || 'dev' }}
4141

42+
dev-test:
43+
needs: docker-build
44+
runs-on: ubuntu-latest
45+
46+
steps:
4247
# Checkout
4348
- uses: actions/checkout@v4
4449

0 commit comments

Comments
 (0)