nix-runner-container/.forgejo/workflows/nix.yaml
Harald Hoyer 2101c06675
All checks were successful
/ build (push) Successful in 1m46s
feat: Add cowsay command to nix workflow
This commit adds a new step in the nix workflow. The `cowsay` command will echo "TEST TEST" during the workflow run for more interactive debugging.
2024-06-27 16:08:48 +02:00

16 lines
630 B
YAML

on: [push]
jobs:
build:
runs-on: nix
steps:
- uses: actions/checkout@v3
- run: cowsay TEST TEST
- run: nix build -L .#runner
- name: upload image
run: |
docker login -u ${{ secrets.REG_USER }} -p ${{ secrets.REG_TOKEN }} ${{ secrets.CI_REGISTRY }}
export IMAGE_TAG=$(docker load -i result | grep -Po 'Loaded image.*: \K.*')
echo "Pushing image ${IMAGE_TAG}"
docker tag "${IMAGE_TAG}" "${{ secrets.CI_REGISTRY }}/${{ secrets.REG_USER }}/nix-runner:latest"
docker push "${{ secrets.CI_REGISTRY }}/${{ secrets.REG_USER }}/nix-runner:latest"