Skip to content

chore(deps): update docker.io/gotenberg/gotenberg docker tag to v8.2.1 #229

chore(deps): update docker.io/gotenberg/gotenberg docker tag to v8.2.1

chore(deps): update docker.io/gotenberg/gotenberg docker tag to v8.2.1 #229

Workflow file for this run

name: CI
on:
push:
jobs:
pre_ci:
uses: dtolnay/.github/.github/workflows/pre_ci.yml@master
build:
strategy:
fail-fast: false
matrix:
nixosConfig:
- artemis
# - delphi
- minimal
name: Build ${{ matrix.nixosConfig }}
runs-on: ubuntu-latest
needs: pre_ci
if: needs.pre_ci.outputs.continue
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@6004951b182f8860210c8d6f0d808ec5b1a33d28 # v25
- uses: cachix/cachix-action@v14
with:
name: uwumarie
authToken: ${{ secrets.CACHIX_AUTH_TOKEN }}
- run: nix build .#nixosConfigurations.${{ matrix.nixosConfig }}.config.system.build.toplevel --accept-flake-config
build-packages:
strategy:
fail-fast: false
matrix:
package:
- installer-stable
- deploy
name: Build package ${{ matrix.package }}
runs-on: ubuntu-latest
needs: pre_ci
if: needs.pre_ci.outputs.continue
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@6004951b182f8860210c8d6f0d808ec5b1a33d28 # v25
- uses: cachix/cachix-action@v14
with:
name: uwumarie
authToken: ${{ secrets.CACHIX_AUTH_TOKEN }}
- run: nix build .#packages.x86_64-linux.${{ matrix.package }}
opentofu:
name: Check OpenTofu infra
runs-on: ubuntu-latest
needs: pre_ci
if: needs.pre_ci.outputs.continue
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@6004951b182f8860210c8d6f0d808ec5b1a33d28 # v25
- name: Initialize OpenTofu
run: nix run .#opentofu -- -chdir=infra init
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
- name: Validate OpenTofu infra
run: nix run .#opentofu -- -chdir=infra validate
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}