From 30e7a2ca7b9abf85e8d1877da76c5c56af6f21a3 Mon Sep 17 00:00:00 2001 From: "Craig J. Bass" <1889973+craigjbass@users.noreply.github.com> Date: Thu, 10 Nov 2022 14:11:51 +0000 Subject: [PATCH] Adds a deployment github action. --- .github/workflows/deploy-docker-image.yml | 41 +++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 .github/workflows/deploy-docker-image.yml diff --git a/.github/workflows/deploy-docker-image.yml b/.github/workflows/deploy-docker-image.yml new file mode 100644 index 0000000..5d958fd --- /dev/null +++ b/.github/workflows/deploy-docker-image.yml @@ -0,0 +1,41 @@ +name: Create and publish a Docker image + +on: + release: + types: [published] + +env: + REGISTRY: ghcr.io + IMAGE_NAME: ${{ github.repository }} + +jobs: + build-and-push-image: + runs-on: ubuntu-latest + permissions: + contents: read + packages: write + + steps: + - name: Checkout repository + uses: actions/checkout@v3 + + - name: Log in to the Container registry + uses: docker/login-action@v2.1.0 + with: + registry: ${{ env.REGISTRY }} + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + + - name: Extract metadata (tags, labels) for Docker + id: meta + uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38 + with: + images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} + + - name: Build and push Docker image + uses: docker/build-push-action@v3.2.0 + with: + context: . + push: true + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }} \ No newline at end of file