mirror of
https://github.com/coder/coder.git
synced 2026-06-03 13:08:25 +00:00
1336925c9f
Replace Depot build action with Nix for Nix dogfood image builds The dogfood Nix image is now built using Nix's native container tooling instead of Depot. This change: - Adds Nix setup steps to the GitHub Actions workflow - Removes the Dockerfile.nix in favor of a Nix-native container build - Updates the flake.nix to support building Docker images - Introduces a hash file to track Nix-related changes - Updates the vendorHash for Go dependencies Change-Id: I4e011fe3a19d9a1375fbfd5223c910e59d66a5d9 Signed-off-by: Thomas Kosiewski <tk@coder.com>
11 lines
271 B
YAML
11 lines
271 B
YAML
name: Setup sqlc
|
|
description: |
|
|
Sets up the sqlc environment for tests, builds, etc.
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Setup sqlc
|
|
uses: sqlc-dev/setup-sqlc@c0209b9199cd1cce6a14fc27cabcec491b651761 # v4.0.0
|
|
with:
|
|
sqlc-version: "1.27.0"
|