Update start message creation in EdgeAgent to use model_dump for impr… #73
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Build" | |
on: | |
pull_request: | |
merge_group: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup-nix | |
with: | |
attic_token: ${{ secrets.ATTIC_TOKEN }} | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
- name: build controller | |
uses: ./.github/actions/run-command-with-nix-cache-upload | |
with: | |
attic_token: ${{ secrets.ATTIC_TOKEN }} | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
script: nix build .#default --print-build-logs |