Skip to content
This repository has been archived by the owner on Nov 25, 2024. It is now read-only.

Commit

Permalink
Update docker-image.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
schillij95 authored Aug 7, 2024
1 parent 93b4b6f commit ee3503c
Showing 1 changed file with 40 additions and 11 deletions.
51 changes: 40 additions & 11 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,47 @@
name: Docker Image CI

name: Build Docker image
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
branches: ["main"]
tags: ["v*"]

concurrency: docker

jobs:
docker:
name: Build Docker image
runs-on: ubuntu-latest
steps:
- name: Extract Docker metadata
id: meta
uses: docker/metadata-action@v4
with:
images: ghcr.io/younader/vesuvius-grandprize-winner
tags: |
type=ref,event=pr
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=raw,value=edge,enable={{is_default_branch}}
build:
- name: Set up QEMU
uses: docker/setup-qemu-action@v2

runs-on: ubuntu-latest
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2

steps:
- uses: actions/checkout@v4
- name: Build the Docker image
run: docker build . --file Dockerfile --tag youssef_gp:$(date +%s)
- name: Login to GitHub Container Registry
if: github.event_name != 'pull_request'
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push
uses: docker/build-push-action@v3
with:
push: ${{ github.event_name != 'pull_request' }}
platforms: linux/amd64,linux/arm64
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-to: type=gha,mode=max
cache-from: type=gha

0 comments on commit ee3503c

Please sign in to comment.