Merge pull request #5 from Slickdeals/OPS-10298-update-jira #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build & Push Jira Development Docker Image to GHCR | |
on: | |
pull_request: | |
branches: | |
- develop | |
push: | |
branches: | |
- develop | |
env: | |
REGISTRY: ghcr.io | |
IMAGE_NAME: slickdeals/jira-software | |
COMMIT_SHA: ${{ github.sha }} | |
jobs: | |
build_image: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to GHCR | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ env.GITHUB_TOKEN }} | |
env: | |
GITHUB_USER: ${{ github.actor }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Extract metadata for the Docker image | |
id: meta | |
uses: docker/metadata-action@v5 | |
with: | |
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} | |
tags: | | |
${{ env.COMMIT_SHA }} | |
${{ vars.DEVELOP_TAG}} | |
- name: Build, Tag, and push Docker image | |
uses: docker/build-push-action@v5 | |
with: | |
context: ./app | |
push: ${{ github.event_name != 'pull_request' }} | |
tags: ${{ env.COMMIT_SHA }} | |
labels: ${{ steps.meta.outputs.labels }} | |
build-args: | | |
BUILD_TAG=${{ vars.DEVELOP_TAG }} |