22 lines
962 B
YAML
22 lines
962 B
YAML
|
on: [ push ]
|
||
|
jobs:
|
||
|
blog-pim:
|
||
|
runs-on: docker
|
||
|
container:
|
||
|
image: git.kun.is/home/forgejo-nix-action:687d16c49ea7936068bac64ec68c480a9d681962
|
||
|
steps:
|
||
|
- name: Clone repository
|
||
|
run: git clone https://git.kun.is/home/container-images.git checkout
|
||
|
- name: Setup Nix cache
|
||
|
run: |
|
||
|
/bin/attic login local https://attic.kun.is ${{ secrets.ATTIC_TOKEN }}
|
||
|
/bin/attic use home
|
||
|
- name: Build blog-pim
|
||
|
run: nix build --out-link blog-pim ./checkout#packages.x86_64-linux.blog-pim
|
||
|
- name: Push blog-pim to Nix cache
|
||
|
run: /bin/attic push home blog-pim
|
||
|
- name: Log into container registry
|
||
|
run: /bin/skopeo login --tls-verify --username pim --password ${{ secrets.RUNNER_TOKEN }} https://git.kun.is
|
||
|
- name: Push blog-pim to container registry
|
||
|
run: /bin/skopeo --insecure-policy copy docker-archive:./blog-pim docker://git.kun.is/home/forgejo-nix-action:latest
|