sneeuwvlok/.forgejo/workflows/runner-image.yml
Chris Kruining ec827c4187
Some checks failed
Test action / Print hello world (push) Failing after 1m51s
update pipeline
2025-09-08 09:03:27 +02:00

47 lines
No EOL
1.2 KiB
YAML

name: Test action
on:
workflow_dispatch:
push:
branches:
- main
env:
registry: git.amarth.cloud
owner: chris
image: default
tag: latest
jobs:
hello:
name: Print hello world
runs-on: default
steps:
- name: Checkout
run: |
git clone ${{ forge.server_url }}/${{ forge.repository }}.git .
- name: Prepare podman
run: |
# configure container policy to accept insecure registry
nix-env -iA nixpkgs.podman nixpkgs.kvmtool
# configure container policy to accept insecure registry
mkdir -p ~/.config/containers
echo '{ "default": [ {"type":"insecureAcceptAnything"} ] }' > ~/.config/containers/policy.json
- name: Log into registry
run: |
podman login --username "${{ forge.actor }}" --password "${{ forge.token }}" ${{ env.registry }}
- name: Create image
run: |
nix-build runners/default.nix
podman load < result
- name: Push image
run: >-
podman push
--creds="${{ forge.actor }}:${{ forge.token }}"
localhost/default:latest
${{ env.registry }}/${{ env.owner }}/${{ env.image }}:${{ env.tag }}