-
Notifications
You must be signed in to change notification settings - Fork 4
47 lines (44 loc) · 1.46 KB
/
docker.yml
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
46
47
name: Docker build and push
on:
push:
branches: [master, main]
paths:
- '**'
- '!.github/**'
- '!.gitignore'
- '!README.md'
pull_request:
workflow_dispatch:
# glftpd.io is down
env:
GLFTPD_URL: "https://mirror.glftpd.nl.eu.org/files/glftpd-LNX-2.14a_3.0.12_x64.tgz"
jobs:
docker-images:
name: Build Docker images and push to repositories
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Login to Github Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build basic glftpd image
run: INSTALL_WEBUI=0 INSTALL_ZS=0 INSTALL_BOT=0 ./docker-build.sh
- name: Push images
run: |
docker tag docker-glftpd:latest ghcr.io/silv3rr/docker-glftpd:latest
#docker tag docker-glftpd-web:latest ghcr.io/silv3rr/docker-glftpd-web:latest
docker push ghcr.io/silv3rr/docker-glftpd:latest
#docker push ghcr.io/silv3rr/docker-glftpd-web:latest
- name: Build full glftpd image
run: INSTALL_WEBUI=0 INSTALL_ZS=1 INSTALL_BOT=1 ./docker-build.sh
- name: Push full image
run: |
docker tag docker-glftpd:latest ghcr.io/silv3rr/docker-glftpd:full
docker push ghcr.io/silv3rr/docker-glftpd:full