1
0
mirror of https://github.com/prasathmani/tinyfilemanager.git synced 2025-08-01 22:40:58 +02:00

feat: add Dockerfile and auto publish. (#619)

This commit is contained in:
Jeffrey-Wang
2021-09-03 13:43:23 +08:00
committed by GitHub
parent 55706b2f8b
commit a22edfca00
3 changed files with 132 additions and 0 deletions

38
.github/workflows/PublishDocker.yml vendored Normal file
View File

@@ -0,0 +1,38 @@
name: PublishDocker
on:
push:
branches:
- 'master'
tags:
- '**'
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Docker meta
id: meta
uses: docker/metadata-action@v3
with:
images: |
${{ secrets.DOCKERHUB_USERNAME }}/tinyfilemanager
tags: |
type=ref,event=branch
type=ref,event=pr
type=semver,pattern={{version}}
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
id: docker_build
uses: docker/build-push-action@v2
with:
push: true
tags: ${{ steps.meta.outputs.tags }}