Skip to content

Commit

Permalink
Update build-test-release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
justinmerrell committed Oct 30, 2023
1 parent 04250de commit cb16668
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/build-test-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:
default: "dev"

jobs:
docker:
docker-build:
runs-on: DO
# DO is a custom runner deployed on DigitalOcean, only available for workflows under the runpod-workers organization.
# If you would like to use this workflow, you can replace DO with ubuntu-latest or any other runner.
Expand All @@ -39,6 +39,11 @@ jobs:
push: true
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' }}

dev-test:
needs: docker-build
runs-on: ubuntu-latest

steps:
# Checkout
- uses: actions/checkout@v4

Expand Down

0 comments on commit cb16668

Please sign in to comment.