Skip to content

Commit 2e1ee49

Browse files
committed
restore pipelines
1 parent fc712fa commit 2e1ee49

File tree

1 file changed

+6
-9
lines changed

1 file changed

+6
-9
lines changed

.github/workflows/build-ova.yml

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
name: Build OVF Image
22

33
on:
4-
push:
5-
branches:
6-
- add-dockge
74
workflow_dispatch:
85
inputs:
96
core_tag:
@@ -66,9 +63,9 @@ jobs:
6663
env:
6764
PACKER_LOG: 1
6865
run: |
69-
CORE_TAG="${{ github.event.inputs.core_tag || '2.0.0-alpha2' }}"
70-
PROXY_TAG="${{ github.event.inputs.proxy_tag || '2.0.0-alpha2' }}"
71-
GATEWAY_TAG="${{ github.event.inputs.gateway_tag || '2.0.0-alpha2' }}"
66+
CORE_TAG="${{ github.event.inputs.core_tag }}"
67+
PROXY_TAG="${{ github.event.inputs.proxy_tag }}"
68+
GATEWAY_TAG="${{ github.event.inputs.gateway_tag }}"
7269
packer build \
7370
-var "iso_url=file://$PWD/ubuntu-24.04.4-live-server-amd64.iso" \
7471
-var "core_tag=${CORE_TAG}" \
@@ -81,9 +78,9 @@ jobs:
8178
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
8279
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
8380
AWS_DEFAULT_REGION: eu-central-1
84-
CORE_TAG: ${{ github.event.inputs.core_tag || '2.0.0-alpha2' }}
85-
PROXY_TAG: ${{ github.event.inputs.proxy_tag || '2.0.0-alpha2' }}
86-
GATEWAY_TAG: ${{ github.event.inputs.gateway_tag || '2.0.0-alpha2' }}
81+
CORE_TAG: ${{ github.event.inputs.core_tag }}
82+
PROXY_TAG: ${{ github.event.inputs.proxy_tag }}
83+
GATEWAY_TAG: ${{ github.event.inputs.gateway_tag }}
8784
run: |
8885
TIMESTAMP=$(date +%Y%m%d-%H%M%S)
8986
FILENAME="defguard_${TIMESTAMP}_core-${CORE_TAG}_edge-${PROXY_TAG}_gateway-${GATEWAY_TAG}.ova"

0 commit comments

Comments
 (0)