Skip to content

Commit

Permalink
upd
Browse files Browse the repository at this point in the history
  • Loading branch information
leighmcculloch committed Jan 22, 2024
1 parent 3f3d4eb commit e915e84
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 15 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-future.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ on:
DOCKERHUB_TOKEN:
required: false
inputs:
tag-prefix:
description: 'Prefix for the tag name'
type: 'string'
default: ''
sha:
description: 'Sha to build'
type: 'string'
required: true
tag-prefix:
description: 'Prefix for the tag name'
type: 'string'
default: ''

jobs:

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build-latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ on:
DOCKERHUB_TOKEN:
required: false
inputs:
tag-prefix:
description: 'Prefix for the tag name'
type: 'string'
default: ''
sha:
description: 'Sha to build'
type: 'string'
required: true
tag-prefix:
description: 'Prefix for the tag name'
type: 'string'
default: ''

jobs:

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ on:
DOCKERHUB_TOKEN:
required: false
inputs:
tag-prefix:
description: 'Prefix for the tag name'
type: 'string'
default: ''
sha:
description: 'Sha to build'
type: 'string'
required: true
tag-prefix:
description: 'Prefix for the tag name'
type: 'string'
default: ''

jobs:

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ jobs:
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
with:
tag-prefix: ${{ needs.setup.outputs.tag-prefix }}
sha: ${{ github.event.pull_request.head.sha || github.sha }}
tag-prefix: ${{ needs.setup.outputs.tag-prefix }}

testing:
needs: [setup]
Expand All @@ -55,8 +55,8 @@ jobs:
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
with:
tag-prefix: ${{ needs.setup.outputs.tag-prefix }}
sha: ${{ github.event.pull_request.head.sha || github.sha }}
tag-prefix: ${{ needs.setup.outputs.tag-prefix }}

future:
needs: [setup]
Expand All @@ -65,5 +65,5 @@ jobs:
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
with:
tag-prefix: ${{ needs.setup.outputs.tag-prefix }}
sha: ${{ github.event.pull_request.head.sha || github.sha }}
tag-prefix: ${{ needs.setup.outputs.tag-prefix }}

0 comments on commit e915e84

Please sign in to comment.