Release 8.0.3 - Fix PNG signature images in PDF viewer

This commit is contained in:
DominikIwanek
2026-08-20 15:01:18 +02:00
parent d4e0da26ac
commit c52a63485b
2 changed files with 45 additions and 23 deletions
@@ -3,17 +3,33 @@ description: "Download build artifacts"
runs: runs:
using: "composite" using: "composite"
steps: steps:
- name: download and extract artifacts from s3 - name: Restore dist from cache
shell: bash uses: actions/cache/restore@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
env: with:
REMOTE_PATH: "alfresco-ng2-components/build-cache/${{ github.run_id }}" path: dist
run: | key: dist-${{ github.run_id }}-${{ github.run_attempt }}
packages=( dist nxcache node_modules ) restore-keys: |
for i in "${packages[@]}"; do dist-${{ github.run_id }}-
time aws s3 cp --no-progress s3://${S3_BUILD_BUCKET_SHORT_NAME}/${REMOTE_PATH}/$i.tar.gz $i.tar.gz fail-on-cache-miss: true
du -h $i.tar.gz
time tar xzf $i.tar.gz - name: Restore nxcache from cache
done uses: actions/cache/restore@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
with:
path: nxcache
key: nxcache-${{ github.run_id }}-${{ github.run_attempt }}
restore-keys: |
nxcache-${{ github.run_id }}-
fail-on-cache-miss: true
- name: Restore node_modules from cache
uses: actions/cache/restore@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
with:
path: node_modules
key: node-modules-${{ github.run_id }}-${{ github.run_attempt }}
restore-keys: |
node-modules-${{ github.run_id }}-
fail-on-cache-miss: true
- name: show files - name: show files
shell: bash shell: bash
run: | run: |
@@ -4,16 +4,22 @@ description: "Upload build artifacts"
runs: runs:
using: "composite" using: "composite"
steps: steps:
- name: tar and upload artifacts - name: Save dist to cache
shell: bash uses: actions/cache/save@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
env: with:
REMOTE_PATH: "alfresco-ng2-components/build-cache/${{ github.run_id }}" path: dist
run: | key: dist-${{ github.run_id }}-${{ github.run_attempt }}
packages=( dist nxcache node_modules )
for i in "${packages[@]}"; do - name: Save nxcache to cache
time tar czf $i.tar.gz $i uses: actions/cache/save@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
du -h $i.tar.gz with:
time aws s3 cp --no-progress $i.tar.gz "s3://${S3_BUILD_BUCKET_SHORT_NAME}/${REMOTE_PATH}/$i.tar.gz" path: nxcache
done key: nxcache-${{ github.run_id }}-${{ github.run_attempt }}
- name: Save node_modules to cache
uses: actions/cache/save@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
with:
path: node_modules
key: node-modules-${{ github.run_id }}-${{ github.run_attempt }}