41 lines
1.1 KiB
YAML
41 lines
1.1 KiB
YAML
name: Production Build (v4)
|
|
|
|
on:
|
|
push:
|
|
branches: ["v4"]
|
|
|
|
env:
|
|
REGISTRY: ghcr.io
|
|
IMAGE_NAME: "coollabsio/coolify"
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Cache Docker layers
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: |
|
|
/usr/local/share/ca-certificates
|
|
/var/cache/apt/archives
|
|
/var/lib/apt/lists
|
|
~/.cache
|
|
key: ${{ runner.os }}-docker-${{ hashFiles('**/Dockerfile') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-docker-
|
|
- name: Login to ghcr.io
|
|
uses: docker/login-action@v2
|
|
with:
|
|
registry: ${{ env.REGISTRY }}
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
- name: Build image and push to registry
|
|
uses: docker/build-push-action@v3
|
|
with:
|
|
context: .
|
|
file: docker/prod-ssu/Dockerfile
|
|
platforms: linux/amd64
|
|
push: true
|
|
tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:4.0.0-nightly.0
|