Skip to content

Commit

Permalink
release and versioning for HMA docker image (#1585)
Browse files Browse the repository at this point in the history
  • Loading branch information
juanmrad authored May 8, 2024
1 parent 434bc54 commit 7c9258f
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 0 deletions.
56 changes: 56 additions & 0 deletions .github/workflows/hma-release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
# Copyright (c) Meta Platforms, Inc. and affiliates.

name: Publish HMA docker image

on:
push:
branches:
- main
paths:
- "hasher-matcher-actioner/version.txt"

env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}

defaults:
run:
working-directory: hasher-matcher-actioner

jobs:
build-and-push:
name: Build and Publish Docker Image to registry
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
attestations: write

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Read version and lowercase image name
id: version
run: |
echo "VERSION=$(cat version.txt)" >> $GITHUB_ENV
echo "IMAGE_NAME_LC=${IMAGE_NAME,,}" >>${GITHUB_ENV}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push
uses: docker/build-push-action@v5
with:
push: true
context: hasher-matcher-actioner
tags: |
${{ env.REGISTRY }}/${{ env.IMAGE_NAME_LC }}/hma:latest
${{ env.REGISTRY }}/${{ env.IMAGE_NAME_LC }}/hma:${{ env.VERSION }}
1 change: 1 addition & 0 deletions hasher-matcher-actioner/version.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
1.0.0

0 comments on commit 7c9258f

Please sign in to comment.