Skip to content

Commit

Permalink
FIXUP: Use bookworm as the reference debian version
Browse files Browse the repository at this point in the history
  • Loading branch information
almet committed Sep 30, 2024
1 parent 0ae59f3 commit 9077dac
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,20 +54,19 @@ jobs:
run: echo "::set-output name=date::$(date +'%Y-%m-%d')"

- name: Restore container cache
id: restore-container-cache
uses: actions/cache@v4
with:
key: v2-${{ steps.date.outputs.date }}-${{ hashFiles('Dockerfile', 'dangerzone/conversion/common.py', 'dangerzone/conversion/doc_to_pixels.py', 'dangerzone/conversion/pixels_to_pdf.py', 'poetry.lock', 'gvisor_wrapper/entrypoint.py') }}
path: |-
share/container.tar.gz
share/image-id.txt
- name: Build Dangerzone image
run: |-
if [ -f "share/container.tar.gz" ]; then
echo "Already cached, skipping"
else
sudo apt-get install -y python3-poetry
python3 ./install/common/build-image.py
fi
- name: Build and push Dangerzone image
if: ${{ steps.restore-container-cache.outputs.cache-hit != 'true' }}
run: |
sudo apt-get install -y python3-poetry
python3 ./install/common/build-image.py
windows:
runs-on: windows-latest
Expand Down Expand Up @@ -163,7 +162,7 @@ jobs:
run --dev --no-gui ./dangerzone/install/linux/build-deb.py
- name: Upload Dangerzone .deb
if: matrix.distro == 'debian' && matrix.version == 'trixie'
if: matrix.distro == 'debian' && matrix.version == 'bookworm'
uses: actions/upload-artifact@v4
with:
name: dangerzone.deb
Expand Down

0 comments on commit 9077dac

Please sign in to comment.