aci/.forgejo/workflows/publish.yml

30 lines
975 B
YAML
Raw Normal View History

name: Publish docker image
on:
push:
branches: ['main']
paths:
- 'backend/**/*'
- flake.nix
jobs:
publish:
name: Publish
runs-on: docker
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install nix
uses: https://github.com/cachix/install-nix-action@v25
- name: Build image
run: "nix --extra-experimental-features 'nix-command,flakes' build .#docker"
- name: Log into registry
run: "nix shell nixpkgs#crane --command crane auth login git.ashhhleyyy.dev -u ${{github.actor}} -p ${{secrets.PACKAGES_TOKEN}}"
- name: Decompress tar.gz
run: "gunzip -c result > /tmp/aci.tar"
- name: Push image (latest)
run: "nix shell nixpkgs#crane --command crane push /tmp/aci.tar git.ashhhleyyy.dev/ash/aci:latest"
2024-02-18 11:58:14 +00:00
- name: Push image
run: "nix shell nixpkgs#crane --command crane push /tmp/aci.tar git.ashhhleyyy.dev/ash/aci:${{github.sha}}"