wip
This commit is contained in:
parent
0aa91b977d
commit
b0f062ff0c
@ -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
|
||||
|
@ -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');
|
||||
}
|
||||
}
|
@ -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');
|
||||
}
|
||||
};
|
Loading…
Reference in New Issue
Block a user