Skip to content

Commit

Permalink
ci: Added Docker workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
FRFlo committed Mar 11, 2024
1 parent 6b6dafb commit 875eff6
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: Build and push Docker image
on:
push:
branches:
- develop
- docker
paths:
- ".github/workflows/docker.yml"
- ".dockerignore"
- "Copy/**"

jobs:
build:
name: Build image
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
id-token: write
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set short git commit SHA
id: vars
run: |
calculatedSha=$(git rev-parse --short ${{ github.sha }})
echo "::set-output name=short_sha::$calculatedSha"
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
file: ./Copy/Dockerfile
platforms: linux/amd64
push: true
tags: |
ghcr.io/frflo/copy:${{ steps.vars.outputs.short_sha }}
ghcr.io/frflo/copy:latest

0 comments on commit 875eff6

Please sign in to comment.