dref/.gitea/workflows/build-docker.yml
Gabriel Simmer 6f330a4355
Some checks failed
Build Docker Image / arm-docker-build (push) Failing after 3s
Mad science
2023-07-17 22:23:23 +01:00

21 lines
554 B
YAML

name: Build Docker Image
on:
push:
branches:
- trunk
jobs:
arm-docker-build:
runs-on: debian-latest-arm
steps:
- name: Install Nix
uses: https://github.com/cachix/install-nix-action
- name: Check out repository
uses: https://github.com/RouxAntoine/checkout@v3.5.4
with:
ref: trunk
- name: Build image
run: nix build .#docker
- name: Push image with Skopeo
run: nix-shell -p skopeo --command "skopeo copy docker-archive:result docker://icr.gmem.ca/dref:arm"