Skip to content

Commit

Permalink
Merge branch 'pterodactyl:develop' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
vlssu authored Oct 22, 2022
2 parents a53869a + 860b2d8 commit 6410568
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ jobs:
uses: docker/build-push-action@v2
if: "contains(github.ref, 'release/v')"
with:
context: .
file: ./Dockerfile
push: true
platforms: linux/amd64,linux/arm64
tags: ${{ steps.docker_meta.outputs.tags }}
Expand All @@ -50,7 +52,11 @@ jobs:
uses: docker/build-push-action@v2
if: "contains(github.ref, 'develop')"
with:
context: .
file: ./Dockerfile
push: ${{ github.event_name != 'pull_request' }}
platforms: linux/amd64,linux/arm64
tags: ${{ steps.docker_meta.outputs.tags }}
labels: ${{ steps.docker_meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max
2 changes: 1 addition & 1 deletion app/Console/Commands/Overrides/UpCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ public function handle(): int
return 1;
}

return parent::handle();
return parent::handle() ?? 0;
}
}

0 comments on commit 6410568

Please sign in to comment.