Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/develop.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: Orb Agent - develop
on:
workflow_dispatch:
inputs:
docker_tag:
description: 'Docker tag to use for the image'
required: false
default: 'develop'
type: string
push:
branches: [ develop ]
paths:
Expand Down Expand Up @@ -55,6 +61,6 @@ jobs:
push: true
cache-from: type=gha
cache-to: type=gha,mode=max
tags: netboxlabs/orb-agent:develop
tags: netboxlabs/orb-agent:${{ github.event.inputs.docker_tag || 'develop' }}
build-args: |
GO_VERSION=${{ env.GO_VERSION }}