mirror of
https://github.com/freedomofpress/dangerzone.git
synced 2025-04-28 18:02:38 +02:00
Compare commits
2 commits
7135910ad8
...
88a703eda9
Author | SHA1 | Date | |
---|---|---|---|
88a703eda9 | |||
![]() |
e8c53777c1 |
3 changed files with 57 additions and 38 deletions
42
.github/workflows/build-push-image.yml
vendored
42
.github/workflows/build-push-image.yml
vendored
|
@ -15,11 +15,21 @@ on:
|
|||
reproduce:
|
||||
required: true
|
||||
type: boolean
|
||||
sign:
|
||||
required: true
|
||||
type: boolean
|
||||
key_name:
|
||||
required: false
|
||||
type: string
|
||||
default: "dangerzone-tests"
|
||||
key_cache:
|
||||
required: false
|
||||
type: string
|
||||
default: "v1-keypair-${{ github.ref_name }}" # unique for the branch / PR
|
||||
secrets:
|
||||
registry_token:
|
||||
required: true
|
||||
|
||||
|
||||
jobs:
|
||||
lint:
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -44,6 +54,7 @@ jobs:
|
|||
debian_archive_date: ${{ steps.params.outputs.debian_archive_date }}
|
||||
source_date_epoch: ${{ steps.params.outputs.source_date_epoch }}
|
||||
image: ${{ steps.params.outputs.full_image_name }}
|
||||
tag: ${{ steps.params.outputs.tag }}
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
|
@ -73,6 +84,7 @@ jobs:
|
|||
debian_archive_date: ${{ needs.prepare.outputs.debian_archive_date }}
|
||||
source_date_epoch: ${{ needs.prepare.outputs.source_date_epoch }}
|
||||
image: ${{ needs.prepare.outputs.image }}
|
||||
tag: ${{ needs.prepare.outputs.tag }}
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
|
@ -140,6 +152,7 @@ jobs:
|
|||
debian_archive_date: ${{ needs.build.outputs.debian_archive_date }}
|
||||
source_date_epoch: ${{ needs.build.outputs.source_date_epoch }}
|
||||
image: ${{ needs.build.outputs.image }}
|
||||
tag: ${{ needs.build.outputs.tag }}
|
||||
digest_root: ${{ steps.image.outputs.digest_root }}
|
||||
digest_amd64: ${{ steps.image.outputs.digest_amd64 }}
|
||||
digest_arm64: ${{ steps.image.outputs.digest_arm64 }}
|
||||
|
@ -246,3 +259,30 @@ jobs:
|
|||
--platform \
|
||||
linux/${{ matrix.platform.name }} \
|
||||
${{ needs.merge.outputs[format('digest_{0}', matrix.platform.name)] }}
|
||||
|
||||
sign:
|
||||
if: ${{ inputs.sign }}
|
||||
runs-on: "ubuntu-latest"
|
||||
env:
|
||||
COSIGN_PASSWORD: "password"
|
||||
COSIGN_YES: true
|
||||
needs:
|
||||
- merge
|
||||
# outputs: add signature location ?
|
||||
steps:
|
||||
- name: Install Cosign
|
||||
uses: sigstore/cosign-installer@d7d6bc7722e3daa8354c50bcb52f4837da5e9b6a
|
||||
- name: Check install
|
||||
run: cosign version
|
||||
- name: Generate keypair
|
||||
run: |-
|
||||
cosign generate-key-pair --output-key-prefix="${{ inputs.key_name }}"
|
||||
- name: Cache keypair
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: "${{ inputs.key_name }}.*"
|
||||
key: ${{ inputs.key_cache }}
|
||||
enableCrossOsArchive: true
|
||||
- name: Sign container
|
||||
run: |-
|
||||
cosign sign --key ${{ inputs.key_name }}.key ${{ inputs.registry }}/${{ inputs.image_name }}:${{ needs.merge.outputs.tag }}@${{ needs.merge.outputs.digest_root }}
|
||||
|
|
52
.github/workflows/ci.yml
vendored
52
.github/workflows/ci.yml
vendored
|
@ -11,11 +11,10 @@ on:
|
|||
|
||||
permissions:
|
||||
packages: write
|
||||
actions: read # for detecting the Github Actions environment.
|
||||
id-token: write # for creating OIDC tokens for signing.
|
||||
|
||||
env:
|
||||
REGISTRY_USER: ${{ github.actor }}
|
||||
REGISTRY_PASSWORD: ${{ github.token }}
|
||||
IMAGE_REGISTRY: ghcr.io/${{ github.repository_owner }}
|
||||
QT_SELECT: "qt6"
|
||||
|
||||
# Disable multiple concurrent runs on the same branch
|
||||
|
@ -45,35 +44,18 @@ jobs:
|
|||
# This is already built daily by the "build.yml" file
|
||||
# But we also want to include this in the checks that run on each push.
|
||||
build-container-image:
|
||||
runs-on: ubuntu-24.04
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Get current date
|
||||
id: date
|
||||
run: echo "date=$(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT
|
||||
|
||||
- name: Cache container image
|
||||
id: cache-container-image
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
key: v5-${{ steps.date.outputs.date }}-${{ hashFiles('Dockerfile', 'dangerzone/conversion/*.py', 'dangerzone/container_helpers/*', 'install/common/build-image.py') }}
|
||||
path: |-
|
||||
share/container.tar
|
||||
share/image-id.txt
|
||||
|
||||
- name: Build Dangerzone container image
|
||||
if: ${{ steps.cache-container-image.outputs.cache-hit != 'true' }}
|
||||
run: |
|
||||
python3 ./install/common/build-image.py
|
||||
|
||||
- name: Upload container image
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: container.tar
|
||||
path: share/container.tar
|
||||
name: Build, push and sign container image
|
||||
uses: ./.github/workflows/build-push-image.yml
|
||||
with:
|
||||
registry: "ghcr.io/${{ github.repository_owner }}"
|
||||
registry_user: ${{ github.actor }}
|
||||
image_name: "dangerzone/dangerzone-staging"
|
||||
reproduce: false
|
||||
sign: true
|
||||
key_name: "dangerzone-tests"
|
||||
key_cache: "v1-test-keypair-${{ github.ref_name }}"
|
||||
secrets:
|
||||
registry_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
download-tessdata:
|
||||
name: Download and cache Tesseract data
|
||||
|
@ -227,9 +209,7 @@ jobs:
|
|||
uses: actions/cache/restore@v4
|
||||
with:
|
||||
key: v5-${{ steps.date.outputs.date }}-${{ hashFiles('Dockerfile', 'dangerzone/conversion/*.py', 'dangerzone/container_helpers/*', 'install/common/build-image.py') }}
|
||||
path: |-
|
||||
share/container.tar
|
||||
share/image-id.txt
|
||||
path: share/container.tar
|
||||
fail-on-cache-miss: true
|
||||
|
||||
- name: Build Dangerzone .deb
|
||||
|
@ -336,7 +316,6 @@ jobs:
|
|||
key: v5-${{ steps.date.outputs.date }}-${{ hashFiles('Dockerfile', 'dangerzone/conversion/*.py', 'dangerzone/container_helpers/*', 'install/common/build-image.py') }}
|
||||
path: |-
|
||||
share/container.tar
|
||||
share/image-id.txt
|
||||
fail-on-cache-miss: true
|
||||
|
||||
- name: Build Dangerzone .rpm
|
||||
|
@ -433,7 +412,6 @@ jobs:
|
|||
key: v5-${{ steps.date.outputs.date }}-${{ hashFiles('Dockerfile', 'dangerzone/conversion/*.py', 'dangerzone/container_helpers/*', 'install/common/build-image.py') }}
|
||||
path: |-
|
||||
share/container.tar
|
||||
share/image-id.txt
|
||||
fail-on-cache-miss: true
|
||||
|
||||
- name: Restore cached tessdata
|
||||
|
|
|
@ -18,5 +18,6 @@ jobs:
|
|||
registry_user: ${{ github.actor }}
|
||||
image_name: dangerzone/dangerzone
|
||||
reproduce: true
|
||||
sign: false
|
||||
secrets:
|
||||
registry_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
|
Loading…
Reference in a new issue