Skip to content

Commit

Permalink
Create MAIN-buildDocker.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
laceysanderson authored May 2, 2024
1 parent e7a935c commit 6403faa
Showing 1 changed file with 62 additions and 0 deletions.
62 changes: 62 additions & 0 deletions .github/workflows/MAIN-buildDocker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.

# GitHub recommends pinning actions to a commit SHA.
# To get a newer version, you will need to update the SHA.
# You can also reference a tag or branch, but the action may change without warning.

name: Publish Docker image
on:
push:
branches:
- '1.4'
- '142-github-workflows-to-help-with-review'

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

jobs:
push_to_registry:
name: Push Docker image to Docker Hub
runs-on: ubuntu-latest
permissions:
packages: write
contents: read
id-token: write
attestations: write

steps:
- name: Check out the repo
uses: actions/checkout@v4
- name: Make Image Name all lowercase
run: |
echo "IMAGE_NAME=${IMAGE_NAME,,}" >>${GITHUB_ENV}
- name: Log in to Docker Hub
uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}

- name: Build and push Docker image
id: push
uses: docker/build-push-action@f2a1d5e99d037542a71f64918e516c093c6f3fc4
with:
context: .
push: true
build-args: |
PGSQL_VERSION=16
APPLY_MIGRATIONS=1
file: 'docker/Dockerfile'
tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:1.4
labels: ${{ steps.meta.outputs.labels }}

0 comments on commit 6403faa

Please sign in to comment.