11 lines
365 B
Bash
Executable File
11 lines
365 B
Bash
Executable File
#!/bin/sh
|
|
|
|
dotnet publish -r linux-arm64 -p:PublishSingleFile=true --self-contained false
|
|
dotnet ef migrations bundle --self-contained -r linux-arm64 --force
|
|
|
|
rsync -va bin/Release/net8.0/linux-arm64/publish/* reimar@reim.ar:/home/reimar/skantravels
|
|
rsync -va efbundle reimar@reim.ar:/home/reimar/skantravels
|
|
|
|
ssh -t reimar@reim.ar "systemctl restart skantravels"
|
|
|