This commit is contained in:
Andras Bacsai 2023-03-29 18:11:54 +02:00
parent 0aa91b977d
commit b0f062ff0c
3 changed files with 2 additions and 56 deletions

View File

@ -67,10 +67,10 @@ public function deploy()
// Export git commit to a file
$this->execute_in_builder("cd {$workdir} && git rev-parse HEAD > {$workdir}/.git-commit");
// Set TAG in docker-compose.yml
// Create docker-compose.yml
$this->execute_in_builder("echo '{$docker_compose_base64}' | base64 -d > {$workdir}/docker-compose.yml");
// Set TAG in docker-compose.yml
$this->execute_in_builder("sed -i \"s/TAG/$(cat {$workdir}/.git-commit)/g\" {$workdir}/docker-compose.yml");
$this->execute_in_builder("cat {$workdir}/docker-compose.yml");
if (str_starts_with($application->base_image, 'apache') || str_starts_with($application->base_image, 'nginx')) {
// @TODO: Add static site builds

View File

@ -1,24 +0,0 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Spatie\Activitylog\Models\Activity;
class Deployment extends Model
{
protected $fillable = [
'uuid',
'type_id',
'type_type',
'activity_log_id',
];
public function type()
{
return $this->morphTo();
}
public function activity()
{
return $this->belongsTo(Activity::class, 'activity_log_id');
}
}

View File

@ -1,30 +0,0 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('deployments', function (Blueprint $table) {
$table->id();
$table->string('uuid')->unique();
$table->morphs('type');
$table->foreignId('activity_log_id');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('deployments');
}
};