diff --git a/.github/workflows/hma-release.yaml b/.github/workflows/hma-release.yaml new file mode 100644 index 000000000..d8485df6b --- /dev/null +++ b/.github/workflows/hma-release.yaml @@ -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 }} diff --git a/hasher-matcher-actioner/version.txt b/hasher-matcher-actioner/version.txt new file mode 100644 index 000000000..afaf360d3 --- /dev/null +++ b/hasher-matcher-actioner/version.txt @@ -0,0 +1 @@ +1.0.0 \ No newline at end of file