Skip to content

fix: always pull latest image on deploy (#46) #25

fix: always pull latest image on deploy (#46)

fix: always pull latest image on deploy (#46) #25

Workflow file for this run

name: Build
on:
push:
branches: [ main ]
env:
REGISTRY: ghcr.io
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: DeterminateSystems/nix-installer-action@main
- uses: DeterminateSystems/magic-nix-cache-action@main
- run: nix build .#runrs-docker-image
release:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v4
- uses: manoadamro/rust-release@v1
with:
owner: ${{ github.repository_owner }}
repo: ${{ github.repository }}
token: ${{ secrets.PAT }}