feat(nix): add beta version parsing and backfill historical beta manifests #31
Workflow file for this run
This file contains hidden or 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: nix-go | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - "manifests/go/**" | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - "manifests/go/**" | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: ${{ github.event_name == 'pull_request' }} | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| name: build / ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-24.04, macos-15] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7 | |
| - name: Setup Nix | |
| uses: ./.github/actions/setup-nix | |
| with: | |
| cachix-token: ${{ secrets.GH_CACHIX }} | |
| push-to-cachix: "true" | |
| - name: Build Go Toolchain | |
| run: nix build |