Skip to content

chore(deps): update ghcr.io/coder/coder docker tag to v2.4.0 (#69) #134

chore(deps): update ghcr.io/coder/coder docker tag to v2.4.0 (#69)

chore(deps): update ghcr.io/coder/coder docker tag to v2.4.0 (#69) #134

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
- insane
- 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@6a9a9e84a173d90b3ffb42c5ddaf9ea033fad011 # v23
- uses: cachix/cachix-action@v12
with:
name: uwumarie
authToken: ${{ secrets.CACHIX_AUTH_TOKEN }}
- run: nix build .#nixosConfigurations.${{ matrix.nixosConfig }}.config.system.build.toplevel --accept-flake-config
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@6a9a9e84a173d90b3ffb42c5ddaf9ea033fad011 # v23
- 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 }}