Skip to content

Commit

Permalink
fix prod deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
reschandreas committed Dec 26, 2023
1 parent 778df53 commit 695634a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deploy-production.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
name: Deploy to Aeolus Production
name: Deploy to Aeolus Prod

on:
workflow_dispatch:
inputs:
docker-tag:
description: 'Docker tag to deploy (e.g. 1.0.0 or latest, default: latest)'
required: true
default: 'latest'
default: 'nightly'
branch-name:
description: 'Branch name to deploy (default: develop)'
required: true
Expand All @@ -16,8 +16,8 @@ jobs:
deploy:
uses: ./.github/workflows/deploy.yaml
with:
docker-tag: latest
branch-name: develop
docker-tag: ${{ github.event.inputs.docker-tag }}
branch-name: ${{ github.event.inputs.branch-name }}
environment-name: aeolus-prod
environment-url: https://aeolus.artemis.cit.tum.de
secrets: inherit

0 comments on commit 695634a

Please sign in to comment.