-
Notifications
You must be signed in to change notification settings - Fork 1
37 lines (35 loc) · 1.01 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
name: Docker build and push
on:
push:
branches: [master, main]
paths:
- '**'
- '!.github/**'
- '!.gitignore'
- '!README.md'
pull_request:
workflow_dispatch:
jobs:
docker-images:
name: Build Docker image and push to repository
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 web image
run: ./docker-build.sh
- name: Push image
run: |
docker tag docker-glftpd-web:latest ghcr.io/silv3rr/docker-glftpd-web:latest
docker tag docker-glftpd-web:latest ghcr.io/silv3rr/glftpd-webui:latest
docker push ghcr.io/silv3rr/docker-glftpd-web:latest
docker push ghcr.io/silv3rr/glftpd-webui:latest