mirror of
https://github.com/ershisan99/coolify.git
synced 2026-02-05 20:52:11 +00:00
57 lines
1.7 KiB
YAML
57 lines
1.7 KiB
YAML
name: Production Build (v4)
|
|
|
|
on:
|
|
push:
|
|
branches: ["v4", "v4-next"]
|
|
|
|
env:
|
|
REGISTRY: ghcr.io
|
|
IMAGE_NAME: "coollabsio/coolify"
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Login to ghcr.io
|
|
uses: docker/login-action@v2
|
|
with:
|
|
registry: ${{ env.REGISTRY }}
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
- name: Get Version
|
|
id: version
|
|
run: |
|
|
echo "VERSION=$(docker run --rm -v "$(pwd):/app" -w /app php:8.2-alpine3.16 php bootstrap/getVersion.php)"|xargs >> $GITHUB_OUTPUT
|
|
- name: Get Composer Cache Directory
|
|
id: composer-cache
|
|
run: |
|
|
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
|
|
- name: Cache apt packages
|
|
id: apt-cache
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: |
|
|
/var/cache/apt/archives/*.deb
|
|
/var/lib/apt/lists/*
|
|
key: ${{ runner.os }}-apt
|
|
- name: Cache composer packages
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: ${{ steps.composer-cache.outputs.dir }}
|
|
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-composer-
|
|
- name: Build image and push to registry
|
|
uses: docker/build-push-action@v4
|
|
with:
|
|
context: .
|
|
file: docker/prod-ssu/Dockerfile
|
|
platforms: linux/amd64
|
|
push: true
|
|
tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ steps.version.outputs.VERSION }}
|
|
- uses: sarisia/actions-status-discord@v1
|
|
if: always()
|
|
with:
|
|
webhook: ${{ secrets.DISCORD_WEBHOOK_DEV_RELEASE_CHANNEL }}
|