fix docker scout organization
This commit is contained in:
parent
68c4e77975
commit
f2e64f7544
4 changed files with 11 additions and 0 deletions
1
.github/workflows/release_branch.yml
vendored
1
.github/workflows/release_branch.yml
vendored
|
@ -66,6 +66,7 @@ jobs:
|
|||
command: environment,quickview,cves,recommendations
|
||||
image: ${{ env.DOCKER_NAMESPACE }}/${{ env.DOTCLEAR_IMAGE }}:${{ github.ref_name }}
|
||||
environment: stable
|
||||
organization: ${{ env.DOCKER_NAMESPACE }}
|
||||
write-comment: true
|
||||
github-token: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
|
|
8
.github/workflows/release_stable.yml
vendored
8
.github/workflows/release_stable.yml
vendored
|
@ -59,6 +59,12 @@ jobs:
|
|||
SUMMARY=$'Image ${{ env.DOCKER_NAMESPACE }}/${{ env.DOTCLEAR_IMAGE }}:${{ steps.dotclear.outputs.tag }} found.'
|
||||
echo "$SUMMARY" >> $GITHUB_STEP_SUMMARY
|
||||
|
||||
- name: rebuild
|
||||
if: ((steps.registry.outputs.image_exists == 'truye') && (github.event.inputs.force_rebuild == 'true'))
|
||||
run: |
|
||||
SUMMARY=$'Rebuilding image ${{ env.DOCKER_NAMESPACE }}/${{ env.DOTCLEAR_IMAGE }}:${{ steps.dotclear.outputs.tag }} is forced.'
|
||||
echo "$SUMMARY" >> $GITHUB_STEP_SUMMARY
|
||||
|
||||
- name: Check repository branch
|
||||
id: branch
|
||||
uses: GuillaumeFalourd/branch-exists@v1.1
|
||||
|
@ -151,6 +157,7 @@ jobs:
|
|||
command: environment,quickview,cves,recommendations
|
||||
image: ${{ env.DOCKER_NAMESPACE }}/${{ env.DOTCLEAR_IMAGE }}:${{ needs.check_image.outputs.version }}
|
||||
environment: stable
|
||||
organization: ${{ env.DOCKER_NAMESPACE }}
|
||||
write-comment: true
|
||||
github-token: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
|
@ -161,6 +168,7 @@ jobs:
|
|||
command: environment,quickview,cves,recommendations
|
||||
image: ${{ env.DOCKER_NAMESPACE }}/${{ env.DOTCLEAR_IMAGE }}:latest
|
||||
environment: latest
|
||||
organization: ${{ env.DOCKER_NAMESPACE }}
|
||||
write-comment: true
|
||||
github-token: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
|
|
1
.github/workflows/release_testing.yml
vendored
1
.github/workflows/release_testing.yml
vendored
|
@ -99,6 +99,7 @@ jobs:
|
|||
command: environment,quickview,cves,recommendations
|
||||
image: ${{ env.DOCKER_NAMESPACE }}/${{ env.DOTCLEAR_IMAGE }}:${{ env.DOTCLEAR_CANAL }}
|
||||
environment: testing
|
||||
organization: ${{ env.DOCKER_NAMESPACE }}
|
||||
write-comment: true
|
||||
github-token: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
|
|
1
.github/workflows/release_unstable.yml
vendored
1
.github/workflows/release_unstable.yml
vendored
|
@ -66,6 +66,7 @@ jobs:
|
|||
command: environment,quickview,cves,recommendations
|
||||
image: ${{ env.DOCKER_NAMESPACE }}/${{ env.DOTCLEAR_IMAGE }}:dev
|
||||
environment: unstable
|
||||
organization: ${{ env.DOCKER_NAMESPACE }}
|
||||
write-comment: true
|
||||
github-token: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
|
|
Loading…
Reference in a new issue