Skip to content

Commit

Permalink
fix: missing step id
Browse files Browse the repository at this point in the history
  • Loading branch information
loboda4450 committed Sep 4, 2024
1 parent 1b28516 commit 8d834b3
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build-conversion.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@ jobs:
type=semver,pattern={{major}},enable=${{ github.ref_type == 'tag' }}
- name: Build and Push Docker Image
uses: docker/build-push-action@v5
id: build
uses: docker/build-push-action@v6
with:
context: ./conversion
platforms: ${{ matrix.platform }}
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/build-idp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@ jobs:
type=semver,pattern={{major}},enable=${{ github.ref_type == 'tag' }}
- name: Build and Push Docker Image
uses: docker/build-push-action@v5
id: build
uses: docker/build-push-action@v6
with:
context: ./idp
platforms: ${{ matrix.platform }}
Expand Down
6 changes: 0 additions & 6 deletions .github/workflows/build-language.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,6 @@ name: Build and Push voltaserve/language

on:
workflow_dispatch:
inputs:
branch:
required: false
default: ""
type: string
description: Override code checkout branch (e.g. "feature/branch")
push:
branches:
- main
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/build-migrations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@ jobs:
type=semver,pattern={{major}},enable=${{ github.ref_type == 'tag' }}
- name: Build and Push Docker Image
uses: docker/build-push-action@v5
id: build
uses: docker/build-push-action@v6
with:
context: ./migrations
cache-from: type=gha
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/build-mosaic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@ jobs:
type=semver,pattern={{major}},enable=${{ github.ref_type == 'tag' }}
- name: Build and Push Docker Image
uses: docker/build-push-action@v5
id: build
uses: docker/build-push-action@v6
with:
context: ./mosaic
platforms: ${{ matrix.platform }}
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/build-ui.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@ jobs:
type=semver,pattern={{major}},enable=${{ github.ref_type == 'tag' }}
- name: Build and Push Docker Image
uses: docker/build-push-action@v5
id: build
uses: docker/build-push-action@v6
with:
context: ./ui
platforms: ${{ matrix.platform }}
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/build-webdav.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@ jobs:
type=semver,pattern={{major}},enable=${{ github.ref_type == 'tag' }}
- name: Build and Push Docker Image
uses: docker/build-push-action@v5
id: build
uses: docker/build-push-action@v6
with:
context: ./webdav
platforms: ${{ matrix.platform }}
Expand Down

0 comments on commit 8d834b3

Please sign in to comment.