Skip to content

Commit

Permalink
ci: fix release docker images (#1969)
Browse files Browse the repository at this point in the history
  • Loading branch information
shumkov authored Jul 17, 2024
1 parent 77f7a96 commit 4b6688a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/release-docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ on:
required: true
env:
DIGEST_NAME: digests-${{ inputs.image_org }}-${{ inputs.image_name }}-${{ github.sha }}
DIGEST_DIR_PATH: ./digests
DIGEST_DIR_PATH: /tmp/digests

jobs:
build-image:
name: Build ${{ matrix.platform }} image
runs-on: ${{ matrix.runner }}
timeout-minutes: 20
timeout-minutes: 25
strategy:
matrix:
include:
Expand Down Expand Up @@ -64,6 +64,7 @@ jobs:

- name: Export digest
run: |
rm -rf ${{ env.DIGEST_DIR_PATH }}
mkdir -p ${{ env.DIGEST_DIR_PATH }}
digest="${{ steps.docker_build.outputs.digest }}"
touch "${{ env.DIGEST_DIR_PATH }}/${digest#sha256:}"
Expand Down

0 comments on commit 4b6688a

Please sign in to comment.