coolify/.github/workflows/coolify-builder.yml

31 lines
764 B
YAML
Raw Normal View History

name: Coolify Builder (v4)
on:
push:
2023-05-02 17:58:38 +02:00
branches: ["this-does-not-exist"]
env:
REGISTRY: ghcr.io
IMAGE_NAME: "coollabsio/coolify-builder"
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 }}
2023-04-27 14:16:16 +02:00
- name: Build image and push to registry
uses: docker/build-push-action@v3
with:
no-cache: true
context: .
2023-05-02 17:53:06 +02:00
file: docker/coolify-builder/Dockerfile
platforms: linux/amd64
push: true
tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest