caddy-with-modules/.forgejo/workflows/cachix.yaml
Adithya Nair 615609836a
Some checks failed
Build and Push to Cachix / Push to Binary Cache (aarch64) (push) Has been cancelled
Build and Push to Cachix / Push to Binary Cache (X86-64) (push) Has been cancelled
fix CI (again)
2024-11-01 10:57:37 +05:30

63 lines
1.6 KiB
YAML

name: Build and Push to Cachix
on:
push:
branches:
- main
workflow_run:
workflows: ['Update Inputs']
types: [completed]
branches:
- main
workflow_dispatch:
jobs:
publish-x86_64:
name: Push to Binary Cache (X86-64)
runs-on: x86_64-docker
container:
image: ghcr.io/catthehacker/ubuntu:act-22.04
steps:
- uses: actions/checkout@v4
- uses: https://github.com/DeterminateSystems/nix-installer-action@main
with:
extra-conf: |
access-tokens = ${{ secrets.GH_PUBLIC_REPO_ACCESS_TOKEN }}
- uses: https://github.com/DeterminateSystems/magic-nix-cache-action@main
- name: Setup Cachix
uses: https://github.com/cachix/cachix-action@v15
with:
name: adtya
authToken: ${{ secrets.CACHIX_AUTH_TOKEN }}
- name: Build and push flake output
run: |
nix build -L .#caddy
publish-aarch64:
name: Push to Binary Cache (aarch64)
runs-on: aarch64-docker
container:
image: ghcr.io/catthehacker/ubuntu:act-22.04
steps:
- uses: actions/checkout@v4
- uses: https://github.com/DeterminateSystems/nix-installer-action@main
with:
extra-conf: |
access-tokens = ${{ secrets.GH_PUBLIC_REPO_ACCESS_TOKEN }}
- uses: https://github.com/DeterminateSystems/magic-nix-cache-action@main
- name: Setup Cachix
uses: https://github.com/cachix/cachix-action@v15
with:
name: adtya
authToken: ${{ secrets.CACHIX_AUTH_TOKEN }}
- name: Build and push flake output
run: |
nix build -L .#caddy