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

30 lines
701 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:
2024-02-23 16:13:33 +00:00
branches: [main]
2022-02-07 16:44:24 +00:00
jobs:
push_to_registry:
name: Push Docker image to Docker Hub
2024-02-23 12:07:05 +00:00
runs-on: docker
2024-02-23 16:13:33 +00:00
container:
image: ghcr.io/catthehacker/ubuntu:act-22.04
2022-02-07 16:44:24 +00:00
steps:
- name: Check out the repo
2024-02-23 16:13:33 +00:00
uses: actions/checkout@v2
2022-02-07 16:44:24 +00:00
- 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
2024-02-23 12:20:00 +00:00
tags: aroyart/iso-share:latest