* build(deps): bump actions/cache from 4 to 5 Bump the actions-deps group. * build(deps): bump cargo-deps group (anyhow, chrono, clap, uuid, tempfile) - anyhow 1.0.101 → 1.0.102 - chrono 0.4.43 → 0.4.44 - clap 4.5.57 → 4.5.60 - uuid 1.20.0 → 1.21.0 - tempfile 3.24.0 → 3.25.0 * build(deps): bump sqlx from 0.7.4 to 0.8.6 * build(deps): bump rand from 0.8.5 to 0.9.2 Migrate API changes: - Replace OsRng.fill_bytes() with rand::rng().fill_bytes() - Replace rand::thread_rng() with rand::rng() * build(deps): bump thiserror from 1.0.69 to 2.0.18
93 lines
2.7 KiB
YAML
93 lines
2.7 KiB
YAML
name: Deploy
|
|
on:
|
|
push:
|
|
branches: ["main"]
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
check:
|
|
name: Check
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v6
|
|
|
|
- name: Install nix
|
|
uses: DeterminateSystems/nix-installer-action@main
|
|
|
|
- name: Setup Nix cache
|
|
uses: nix-community/cache-nix-action@main
|
|
with:
|
|
primary-key: nix-${{ runner.os }}-${{ hashFiles('**/*.nix', '**/flake.lock') }}
|
|
restore-prefixes-first-match: nix-${{ runner.os }}-
|
|
|
|
- name: Cache Cargo artifacts
|
|
uses: actions/cache@v5
|
|
with:
|
|
path: |
|
|
~/.cargo/registry/index/
|
|
~/.cargo/registry/cache/
|
|
~/.cargo/git/db/
|
|
target/
|
|
key: cargo-${{ runner.os }}-${{ hashFiles('**/Cargo.lock') }}-check
|
|
restore-keys: |
|
|
cargo-${{ runner.os }}-${{ hashFiles('**/Cargo.lock') }}-
|
|
cargo-${{ runner.os }}-
|
|
|
|
- name: Check formatting
|
|
run: nix develop -c cargo fmt --check
|
|
|
|
- name: Clippy
|
|
run: nix develop -c cargo clippy
|
|
|
|
- name: Run tests
|
|
run: nix develop -c cargo test -- --show-output
|
|
|
|
deploy:
|
|
name: Deploy
|
|
runs-on: ubuntu-latest
|
|
needs:
|
|
- check
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v6
|
|
|
|
- name: Install nix
|
|
uses: DeterminateSystems/nix-installer-action@v21
|
|
|
|
- name: Setup Nix cache
|
|
uses: nix-community/cache-nix-action@main
|
|
with:
|
|
primary-key: nix-${{ runner.os }}-${{ hashFiles('**/*.nix', '**/flake.lock') }}
|
|
restore-prefixes-first-match: nix-${{ runner.os }}-
|
|
|
|
- name: Login to GitHub Container Registry
|
|
uses: docker/login-action@v3
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Build container
|
|
run: |
|
|
nix build -L .#brewlog-container
|
|
|
|
- name: Upload container to ghcr.io
|
|
run: |
|
|
docker load < result
|
|
version=$(cat Cargo.toml | nix run nixpkgs#tomlq -- -r .package.version)
|
|
|
|
docker tag "brewlog:${version}" "ghcr.io/jnsgruk/brewlog:$(git rev-parse --short HEAD)"
|
|
docker push "ghcr.io/jnsgruk/brewlog:$(git rev-parse --short HEAD)"
|
|
|
|
docker tag "brewlog:${version}" "ghcr.io/jnsgruk/brewlog:latest"
|
|
docker push "ghcr.io/jnsgruk/brewlog:latest"
|
|
|
|
- name: Deploy site
|
|
run: |
|
|
nix run nixpkgs#flyctl -- deploy -i "ghcr.io/jnsgruk/brewlog:$(git rev-parse --short HEAD)"
|
|
env:
|
|
FLY_ACCESS_TOKEN: ${{ secrets.FLY_API_TOKEN }}
|