aci/.forgejo/workflows/publish.yml
Ashhhleyyy 9f63a2c7d3
All checks were successful
Publish docker image / Publish (push) Successful in 2m22s
fix(ci): use special token for package push
2024-02-18 12:20:08 +00:00

26 lines
923 B
YAML

name: Publish docker image
on:
push:
branches: ['main']
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"
- name: Push image
run: "nix shell nixpkgs#crane --command crane push /tmp/aci.tar git.ashhhleyyy.dev/ash/aci:${{github.sha}}"