Split tasks into separate workflows
This commit is contained in:
parent
3bd9676ba0
commit
23ab82838c
4 changed files with 64 additions and 53 deletions
22
.forgejo/workflows/atticd.yaml
Normal file
22
.forgejo/workflows/atticd.yaml
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
|
||||||
|
on: [ push ]
|
||||||
|
jobs:
|
||||||
|
atticd:
|
||||||
|
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 Atticd
|
||||||
|
run: nix build --out-link atticd ./checkout#packages.x86_64-linux.atticd
|
||||||
|
- name: Push atticd to Nix cache
|
||||||
|
run: /bin/attic push home atticd
|
||||||
|
- name: Log into container registry
|
||||||
|
run: /bin/skopeo login --tls-verify --username pim --password ${{ secrets.RUNNER_TOKEN }} https://git.kun.is
|
||||||
|
- name: Push atticd to container registry
|
||||||
|
run: /bin/skopeo --insecure-policy copy docker-archive:./atticd docker://git.kun.is/home/atticd:latest
|
21
.forgejo/workflows/blog-pim.yaml
Normal file
21
.forgejo/workflows/blog-pim.yaml
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
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
|
|
@ -1,53 +0,0 @@
|
||||||
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
|
|
||||||
atticd:
|
|
||||||
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 Atticd
|
|
||||||
run: nix build --out-link atticd ./checkout#packages.x86_64-linux.atticd
|
|
||||||
- name: Push atticd to Nix cache
|
|
||||||
run: /bin/attic push home atticd
|
|
||||||
- name: Log into container registry
|
|
||||||
run: /bin/skopeo login --tls-verify --username pim --password ${{ secrets.RUNNER_TOKEN }} https://git.kun.is
|
|
||||||
- name: Push atticd to container registry
|
|
||||||
run: /bin/skopeo --insecure-policy copy docker-archive:./atticd docker://git.kun.is/home/atticd:latest
|
|
||||||
forgejo-nix-action:
|
|
||||||
runs-on: docker
|
|
||||||
container:
|
|
||||||
image: git.kun.is/home/forgejo-nix-action:687d16c49ea7936068bac64ec68c480a9d681962
|
|
||||||
steps:
|
|
||||||
- name: Build forgejo-nix-action
|
|
||||||
run: nix build --out-link forgejo-nix-action ./checkout#packages.x86_64-linux.forgejo-nix-action
|
|
||||||
- name: Push forgjeo-nix-action to Nix cache
|
|
||||||
run: /bin/attic push home forgejo-nix-action
|
|
||||||
- name: Log into container registry
|
|
||||||
run: /bin/skopeo login --tls-verify --username pim --password ${{ secrets.RUNNER_TOKEN }} https://git.kun.is
|
|
||||||
- name: Push forgejo-nix-action to container registry
|
|
||||||
run: /bin/skopeo --insecure-policy copy docker-archive:./forgejo-nix-action docker://git.kun.is/home/forgejo-nix-action:latest
|
|
21
.forgejo/workflows/forgejo-nix-action.yaml
Normal file
21
.forgejo/workflows/forgejo-nix-action.yaml
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
on: [ push ]
|
||||||
|
jobs:
|
||||||
|
forgejo-nix-action:
|
||||||
|
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 forgejo-nix-action
|
||||||
|
run: nix build --out-link forgejo-nix-action ./checkout#packages.x86_64-linux.forgejo-nix-action
|
||||||
|
- name: Push forgjeo-nix-action to Nix cache
|
||||||
|
run: /bin/attic push home forgejo-nix-action
|
||||||
|
- name: Log into container registry
|
||||||
|
run: /bin/skopeo login --tls-verify --username pim --password ${{ secrets.RUNNER_TOKEN }} https://git.kun.is
|
||||||
|
- name: Push forgejo-nix-action to container registry
|
||||||
|
run: /bin/skopeo --insecure-policy copy docker-archive:./forgejo-nix-action docker://git.kun.is/home/forgejo-nix-action:latest
|
Reference in a new issue