-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
97c5481
commit 4f10432
Showing
31 changed files
with
1,426 additions
and
992 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,25 +37,25 @@ jobs: | |
run: echo "DEPLOYMENT_PROJECT_VERSION=$(bash ./environment/prod/deployment/scripts/version.sh --long)" >> $GITHUB_ENV | ||
|
||
- name: set up Docker Buildx | ||
uses: docker/setup-buildx-action@v3 | ||
uses: docker/setup-buildx-action@v3.3.0 | ||
|
||
- name: login to GitHub Container Registry | ||
uses: docker/login-action@v3 | ||
uses: docker/login-action@v3.1.0 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ github.token }} | ||
|
||
- name: Docker meta | ||
id: meta | ||
uses: docker/metadata-action@v5.3.0 | ||
uses: docker/metadata-action@v5.5.1 | ||
with: | ||
images: ghcr.io/${{ github.repository_owner }}/${{ env.REPO_NAME }} | ||
tags: type=raw,value=beta | ||
context: git | ||
|
||
- name: build and push image | ||
uses: docker/build-push-action@v5.1.0 | ||
uses: docker/build-push-action@v5.3.0 | ||
with: | ||
context: . | ||
file: ./environment/prod/app/Dockerfile | ||
|
@@ -67,7 +67,7 @@ jobs: | |
cache-to: type=gha, ref=ghcr.io/${{ github.repository_owner }}/${{ env.REPO_NAME }}-beta-build-cache, mode=max | ||
|
||
- name: copy files via ssh | ||
uses: appleboy/[email protected].4 | ||
uses: appleboy/[email protected].7 | ||
with: | ||
timeout: 10s | ||
command_timeout: 10m | ||
|
@@ -81,7 +81,7 @@ jobs: | |
rm: true | ||
|
||
- name: run deployment script over ssh | ||
uses: appleboy/[email protected].0 | ||
uses: appleboy/[email protected].3 | ||
with: | ||
timeout: 10s | ||
command_timeout: 10m | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,14 +21,14 @@ jobs: | |
- uses: actions/[email protected] | ||
|
||
- name: Cache dependencies | ||
uses: actions/cache@v3.3.2 | ||
uses: actions/cache@v4.0.2 | ||
with: | ||
path: node_modules | ||
key: ${{ runner.os }}-npm-dependencies-${{ hashFiles('package.lock') }} | ||
restore-keys: ${{ runner.os }}-npm-dependencies | ||
|
||
- name: Set up node | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].2 | ||
with: | ||
node-version: 20 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,5 @@ | |
|
||
class PreventRequestsDuringMaintenance extends Middleware | ||
{ | ||
protected $except = [ | ||
]; | ||
protected $except = []; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,5 @@ | |
|
||
class VerifyCsrfToken extends Middleware | ||
{ | ||
protected $except = [ | ||
]; | ||
protected $except = []; | ||
} |
Oops, something went wrong.