Skip to content

Docker

Docker #1

name: Docker
on:
workflow_dispatch:
release:
types: [released]
jobs:
push_to_registry:
name: Push Docker image to Docker Hub
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v4
- name: Fetch artifact
uses: dsaltares/fetch-gh-release-asset@master
with:
file: 'build.zip'
- name: Unzip build dir
uses: montudor/action-zip@v1
with:
args: unzip -qq build.zip
- name: Log in to Docker Hub
uses: docker/login-action@v3.0.0
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5.5.1
with:
images: acdemeg/web-downloader-frontend
- name: Build and push Docker image
uses: docker/build-push-action@v5.1.0
with:
context: .
file: ./Dockerfile
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}