Skip to content

Commit

Permalink
Reformat container build workflow yaml
Browse files Browse the repository at this point in the history
Use yaml instead of json syntax for array. It's easier to change and
diff if each item of an array is at its own line in the file.
  • Loading branch information
bjoernricks committed Jan 30, 2025
1 parent 072dd81 commit deaa21b
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,13 @@ name: Build and Push to Container Image

on:
push:
branches: [main]
tags: ['v24*']
branches:
- main
tags:
- 'v24*'
pull_request:
branches: [main]
branches:
- main
workflow_dispatch:
inputs:
ref-name:
Expand Down

0 comments on commit deaa21b

Please # to comment.