mirror of
https://github.com/zabbix/zabbix-docker.git
synced 2025-05-31 15:16:13 +02:00
Fixed Windows build process. Removing symlink during build process
This commit is contained in:
parent
12bda15a98
commit
9d3678017e
6
.github/workflows/images_build_windows.yml
vendored
6
.github/workflows/images_build_windows.yml
vendored
@ -134,6 +134,8 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
$context='.\Dockerfiles\${{ env.BASE_BUILD_NAME }}\windows\'
|
$context='.\Dockerfiles\${{ env.BASE_BUILD_NAME }}\windows\'
|
||||||
$dockerfile= $context + 'Dockerfile.${{ matrix.component }}'
|
$dockerfile= $context + 'Dockerfile.${{ matrix.component }}'
|
||||||
|
# Can not build on GitHub due existing symlink. Must be removed before build process
|
||||||
|
Remove-Item -ErrorAction Ignore -Force -Path $context\README.md
|
||||||
|
|
||||||
$tags_array=$( "${{ steps.meta.outputs.tags }}".Split("`r`n") )
|
$tags_array=$( "${{ steps.meta.outputs.tags }}".Split("`r`n") )
|
||||||
$tags=$( $tags_array | Foreach-Object { "--tag=$_" } )
|
$tags=$( $tags_array | Foreach-Object { "--tag=$_" } )
|
||||||
@ -244,6 +246,8 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
$context='.\Dockerfiles\${{ env.COMPONENT_BASE_BUILD_NAME }}\windows\'
|
$context='.\Dockerfiles\${{ env.COMPONENT_BASE_BUILD_NAME }}\windows\'
|
||||||
$dockerfile= $context + 'Dockerfile.${{ matrix.component }}'
|
$dockerfile= $context + 'Dockerfile.${{ matrix.component }}'
|
||||||
|
# Can not build on GitHub due existing symlink. Must be removed before build process
|
||||||
|
Remove-Item -ErrorAction Ignore -Force -Path $context\README.md
|
||||||
|
|
||||||
$tags_array=$( "${{ steps.meta.outputs.tags }}".Split("`r`n") )
|
$tags_array=$( "${{ steps.meta.outputs.tags }}".Split("`r`n") )
|
||||||
$tags=$($tags_array | Foreach-Object { "--tag=$_" })
|
$tags=$($tags_array | Foreach-Object { "--tag=$_" })
|
||||||
@ -352,6 +356,8 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
$context='.\Dockerfiles\${{ matrix.component }}\windows\'
|
$context='.\Dockerfiles\${{ matrix.component }}\windows\'
|
||||||
$dockerfile= $context + 'Dockerfile'
|
$dockerfile= $context + 'Dockerfile'
|
||||||
|
# Can not build on GitHub due existing symlink. Must be removed before build process
|
||||||
|
Remove-Item -ErrorAction Ignore -Force -Path $context\README.md
|
||||||
|
|
||||||
$tags_array=$( "${{ steps.meta.outputs.tags }}".Split("`r`n") )
|
$tags_array=$( "${{ steps.meta.outputs.tags }}".Split("`r`n") )
|
||||||
$tags=$($tags_array | Foreach-Object { "--tag=$_" })
|
$tags=$($tags_array | Foreach-Object { "--tag=$_" })
|
||||||
|
Loading…
x
Reference in New Issue
Block a user