ISO-Share/.github/workflows/docker-image.yml

28 lines
648 B
YAML
Raw Normal View History

2022-02-07 16:44:24 +00:00
name: Publish Docker image
on:
2022-02-07 16:56:14 +00:00
workflow_dispatch:
push:
branches: [master]
2022-02-07 16:44:24 +00:00
jobs:
push_to_registry:
name: Push Docker image to Docker Hub
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v2
- name: Docker Login
uses: docker/login-action@v1.12.0
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
2022-02-07 17:12:21 +00:00
2022-02-07 16:44:24 +00:00
- name: Build and push Docker image
uses: docker/build-push-action@v2.9.0
with:
context: .
push: true
2022-02-07 17:12:21 +00:00
tags: mohamnag/nginx-file-browser:latest