blob: 93888d7b450746773ef816eac0c88f907e4f2603 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
name: upload to registry
# this is for uploading images to a container registry when
# changes are made to `main`
on:
push:
branches:
- main
workflow_dispatch:
permissions:
packages: write
jobs:
upload:
runs-on: ubuntu-latest
env:
REGISTRY: ghcr.io
USERNAME: getchoo
steps:
- uses: actions/checkout@v4
- uses: DeterminateSystems/nix-installer-action@main
- uses: DeterminateSystems/magic-nix-cache-action@main
- name: fetch docker image
run: |
nix build --accept-flake-config -L .#container
readlink result | xargs -I {} cp {} teawiebot.tar.gz
- name: login to registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ env.USERNAME }}
password: ${{ github.token }}
- name: upload to registry
env:
PUSH_PREFIX: ${{ env.REGISTRY }}/${{ env.USERNAME }}
run: |
docker load < teawiebot.tar.gz
docker tag teawiebot:latest ${{ env.PUSH_PREFIX }}/teawiebot:latest
docker push ${{ env.PUSH_PREFIX }}/teawiebot:latest
|