diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 000000000..7473f1905 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,22 @@ +name: snipeitActions + +on: + push: + branches: [ main ] + +jobs: + + build: + name: CI/CD-snipeit + runs-on: ubuntu-latest + steps: + - name: executing remote ssh commands using key + uses: appleboy/ssh-action@master + with: + host: 52.66.201.69 + username: ubuntu + key: ${{ secrets.KEY }} + port: 22 + script: | + whoami + cd /var/www/snipe-it diff --git a/resources/views/dashboard.blade.php b/resources/views/dashboard.blade.php index 1dd732b97..aa8c55b7a 100755 --- a/resources/views/dashboard.blade.php +++ b/resources/views/dashboard.blade.php @@ -1,7 +1,7 @@ @extends('layouts/default') {{-- Page title --}} @section('title') -{{ trans('general.dashboard') }} +{{ trans('general.dashboard7') }} @parent @stop