2022-02-07 17:44:24 +01:00
|
|
|
name: Publish Docker image
|
|
|
|
|
|
|
|
on:
|
2022-02-07 17:56:14 +01:00
|
|
|
workflow_dispatch:
|
|
|
|
push:
|
2024-02-23 17:13:33 +01:00
|
|
|
branches: [main]
|
2022-02-07 17:44:24 +01:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
push_to_registry:
|
|
|
|
name: Push Docker image to Docker Hub
|
2024-02-23 13:07:05 +01:00
|
|
|
runs-on: docker
|
2024-02-23 17:13:33 +01:00
|
|
|
container:
|
2024-05-22 23:28:28 +02:00
|
|
|
image: docker:cli
|
2022-02-07 17:44:24 +01:00
|
|
|
steps:
|
|
|
|
- name: Check out the repo
|
2024-02-23 19:06:00 +01:00
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
2024-05-22 23:45:38 +02:00
|
|
|
- name: Set up Docker Buildx
|
|
|
|
uses: docker/setup-buildx-action@v3
|
2022-02-07 17:44:24 +01:00
|
|
|
|
|
|
|
- name: Docker Login
|
|
|
|
uses: docker/login-action@v1.12.0
|
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
2022-02-07 18:12:21 +01:00
|
|
|
|
2022-02-07 17:44:24 +01:00
|
|
|
- name: Build and push Docker image
|
|
|
|
uses: docker/build-push-action@v2.9.0
|
|
|
|
with:
|
|
|
|
context: .
|
|
|
|
push: true
|
2024-02-23 13:20:00 +01:00
|
|
|
tags: aroyart/iso-share:latest
|