Docker Image #108
Workflow file for this run
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: Docker Image | |
on: | |
create: | |
env: | |
REGISTRY: ghcr.io | |
IMAGE_NAME: rahb-realtors-association/selenium-screenshots | |
DOKKU_APP_NAME: screenshot-api | |
DOKKU_REMOTE_URL: ssh://[email protected]:22/screenshot-api | |
jobs: | |
build-and-push-image: | |
if: github.event.ref_type == 'tag' # This job runs only if the created object is a tag | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
packages: write | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Log in to the Container registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Extract metadata (tags, labels) for Docker | |
id: meta | |
uses: docker/metadata-action@v4 | |
with: | |
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} | |
# Use the Git reference (branch or tag) as the Docker tag. | |
tags: | | |
type=ref,event=tag | |
type=semver,pattern={{version}} | |
type=sha,format=long | |
type=raw,value=latest,enable=${{ github.event_name == 'push' }} | |
- name: Build and push Docker image | |
uses: docker/build-push-action@v4 | |
with: | |
context: . | |
push: true | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} | |
deploy-to-coolify: | |
needs: build-and-push-image | |
runs-on: ubuntu-latest | |
permissions: | |
contents: none | |
packages: none | |
steps: | |
# Step 1: Deploy to Coolify by triggering the webhook | |
- name: Deploy to Coolify | |
run: | | |
curl --request GET '${{ secrets.COOLIFY_WEBHOOK_PROD }}' \ | |
--header 'Authorization: Bearer ${{ secrets.COOLIFY_TOKEN }}' |