docs: add screenshots #17
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |