We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04250de commit cb16668Copy full SHA for cb16668
.github/workflows/build-test-release.yml
@@ -14,7 +14,7 @@ on:
14
default: "dev"
15
16
jobs:
17
- docker:
+ docker-build:
18
runs-on: DO
19
# DO is a custom runner deployed on DigitalOcean, only available for workflows under the runpod-workers organization.
20
# If you would like to use this workflow, you can replace DO with ubuntu-latest or any other runner.
@@ -39,6 +39,11 @@ jobs:
39
push: true
40
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' }}
41
42
+ dev-test:
43
+ needs: docker-build
44
+ runs-on: ubuntu-latest
45
+
46
+ steps:
47
# Checkout
48
- uses: actions/checkout@v4
49
0 commit comments