coolify/.github/workflows/production-build.yml

38 lines
1.1 KiB
YAML
Raw Normal View History

2023-04-27 11:29:02 +02:00
name: Production Build (v4)
on:
push:
2023-05-02 14:30:15 +02:00
branches: ["v4", "v4-next"]
2023-04-27 11:29:02 +02:00
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
2023-04-27 14:16:16 +02:00
- name: Build image and push to registry
2023-04-28 14:05:33 +02:00
uses: docker/build-push-action@v4
2023-04-27 11:29:02 +02:00
with:
context: .
file: docker/prod-ssu/Dockerfile
platforms: linux/amd64
push: true
tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ steps.version.outputs.VERSION }}
2023-04-28 14:05:33 +02:00
- uses: sarisia/actions-status-discord@v1
if: always()
with:
webhook: ${{ secrets.DISCORD_WEBHOOK_DEV_RELEASE_CHANNEL }}