From b056826e9400d94c4174801dd5656d2d189e4bff Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Tue, 24 Jan 2023 15:31:26 +0100 Subject: [PATCH 1/5] Fixing prod release --- .github/workflows/production-release.yml | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/.github/workflows/production-release.yml b/.github/workflows/production-release.yml index dc73248cf..6bc19effb 100644 --- a/.github/workflows/production-release.yml +++ b/.github/workflows/production-release.yml @@ -2,7 +2,8 @@ name: production-release on: release: - types: [released] + # types: [released] + types: [prereleased] jobs: arm64: @@ -54,7 +55,7 @@ jobs: context: . platforms: linux/amd64 push: true - tags: coollabsio/coolify:${{steps.package-version.outputs.current-version}} + tags: coollabsio/coolify:${{steps.package-version.outputs.current-version}}-amd64 cache-from: type=registry,ref=coollabsio/coolify:buildcache-amd64 cache-to: type=registry,ref=coollabsio/coolify:buildcache-amd64,mode=max aarch64: @@ -103,11 +104,14 @@ jobs: id: package-version - name: Create & publish manifest run: | + docker pull coollabsio/coolify:${{steps.package-version.outputs.current-version}}-arm64 + docker pull coollabsio/coolify:${{steps.package-version.outputs.current-version}}-aarch64 + docker pull coollabsio/coolify:${{steps.package-version.outputs.current-version}} docker buildx imagetools create --append coollabsio/coolify:${{steps.package-version.outputs.current-version}}-arm64 --append coollabsio/coolify:${{steps.package-version.outputs.current-version}}-aarch64 --tag coollabsio/coolify:${{steps.package-version.outputs.current-version}} docker tag coollabsio/coolify:${{steps.package-version.outputs.current-version}} coollabsio/coolify:latest docker push coollabsio/coolify:latest docker buildx imagetools create --append coollabsio/coolify:${{steps.package-version.outputs.current-version}}-arm64 --append coollabsio/coolify:${{steps.package-version.outputs.current-version}}-aarch64 --tag coollabsio/coolify:latest - - uses: sarisia/actions-status-discord@v1 - if: always() - with: - webhook: ${{ secrets.DISCORD_WEBHOOK_PROD_RELEASE_CHANNEL }} + # - uses: sarisia/actions-status-discord@v1 + # if: always() + # with: + # webhook: ${{ secrets.DISCORD_WEBHOOK_PROD_RELEASE_CHANNEL }} From ab712ac6371a4e667cffe4d3574e5b23cab915af Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Tue, 24 Jan 2023 15:32:32 +0100 Subject: [PATCH 2/5] version++ --- apps/api/src/lib/common.ts | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/api/src/lib/common.ts b/apps/api/src/lib/common.ts index e1f4e1d6d..454155a9c 100644 --- a/apps/api/src/lib/common.ts +++ b/apps/api/src/lib/common.ts @@ -19,7 +19,7 @@ import { saveBuildLog, saveDockerRegistryCredentials } from './buildPacks/common import { scheduler } from './scheduler'; import type { ExecaChildProcess } from 'execa'; -export const version = '3.12.18'; +export const version = '3.12.19'; export const isDev = process.env.NODE_ENV === 'development'; export const sentryDSN = 'https://409f09bcb7af47928d3e0f46b78987f3@o1082494.ingest.sentry.io/4504236622217216'; diff --git a/package.json b/package.json index a3f1b54a5..682160111 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "coolify", "description": "An open-source & self-hostable Heroku / Netlify alternative.", - "version": "3.12.18", + "version": "3.12.19", "license": "Apache-2.0", "repository": "github:coollabsio/coolify", "scripts": { From 23bfc119d9ffa76eccf7b6acac05ba8240c59f4d Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Tue, 24 Jan 2023 15:43:43 +0100 Subject: [PATCH 3/5] Fix GH --- .github/workflows/production-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/production-release.yml b/.github/workflows/production-release.yml index 6bc19effb..db54d376a 100644 --- a/.github/workflows/production-release.yml +++ b/.github/workflows/production-release.yml @@ -55,7 +55,7 @@ jobs: context: . platforms: linux/amd64 push: true - tags: coollabsio/coolify:${{steps.package-version.outputs.current-version}}-amd64 + tags: coollabsio/coolify:${{steps.package-version.outputs.current-version}} cache-from: type=registry,ref=coollabsio/coolify:buildcache-amd64 cache-to: type=registry,ref=coollabsio/coolify:buildcache-amd64,mode=max aarch64: From c138fcc2e2e0a3a39d55637342ebe41d7b33f1aa Mon Sep 17 00:00:00 2001 From: Fulvio Carvalhido Date: Mon, 30 Jan 2023 13:18:03 +0000 Subject: [PATCH 4/5] Update PocketBase to v0.12.0 Release: https://github.com/pocketbase/pocketbase/releases/tag/v0.12.0 --- others/pocketbase/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/others/pocketbase/Dockerfile b/others/pocketbase/Dockerfile index c8d8bdb7b..405120abd 100644 --- a/others/pocketbase/Dockerfile +++ b/others/pocketbase/Dockerfile @@ -1,6 +1,6 @@ FROM alpine:3.17 ARG BUILDARCH -ARG PB_VERSION=0.11.0 +ARG PB_VERSION=0.12.0 RUN apk add --no-cache \ unzip \ ca-certificates From da032941b4064ccace3230db92898d61a85389ef Mon Sep 17 00:00:00 2001 From: Fulvio Carvalhido Date: Tue, 7 Feb 2023 12:31:44 +0000 Subject: [PATCH 5/5] Update version 0.12.2 --- others/pocketbase/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/others/pocketbase/Dockerfile b/others/pocketbase/Dockerfile index 405120abd..13726710c 100644 --- a/others/pocketbase/Dockerfile +++ b/others/pocketbase/Dockerfile @@ -1,6 +1,6 @@ FROM alpine:3.17 ARG BUILDARCH -ARG PB_VERSION=0.12.0 +ARG PB_VERSION=0.12.2 RUN apk add --no-cache \ unzip \ ca-certificates