blog-pim/.forgejo/workflows/push.yaml
Pim Kunis 8f7d6b5c3c
Some checks failed
/ blog-pim (push) Failing after 7s
Pull and push git repo with token
2024-04-30 22:22:30 +02:00

21 lines
998 B
YAML

on: [ push ]
jobs:
blog-pim:
runs-on: docker
container:
image: git.kun.is/home/forgejo-nix-action:687d16c49ea7936068bac64ec68c480a9d681962
env:
GIT_COMMITTER_NAME: Forgejo Action
GIT_COMMITTER_EMAIL: noreply@git.kun.is
GIT_AUTHOR_NAME: Forgejo Action
GIT_AUTHOR_EMAIL: noreply@git.kun.is
steps:
- name: Clone container-images repository
run: git clone https://${{ secrets.RUNNER_TOKEN }}@${GITHUB_SERVER_URL#https://}/home/container-images.git container-images
- name: Update Nix input on container-images
run: nix flake lock --update-input blog-pim ./container-images
- name: Push changes to container-images repo
run: |
git --git-dir container-images/.git --work-tree container-images add -A
git --git-dir container-images/.git --work-tree container-images commit --message "Bump blog-pim Nix flake input"
git --git-dir container-images/.git --work-tree container-images push