php upload size #49
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
name: Build Docker Image | |
on: | |
push: | |
branches: [ "main" ] | |
# pull_request: | |
# branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: Checkout | |
uses: actions/checkout@v4 | |
- | |
name: Discord Webhook Action - Build Start | |
uses: tsickert/[email protected] | |
with: | |
webhook-url: ${{ secrets.DISCORD_WEBHOOK_URL }} | |
embed-title: ${{ github.repository }} - Build Started! | |
embed-url: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} | |
embed-description: ${{ github.event.head_commit.message }} | |
- | |
name: Login to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- | |
name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- | |
name: Create Dummy .env | |
run: touch src/.env | |
- | |
name: Build App Dependencies | |
run: make build && make artisan-storage-link | |
- | |
name: Push - NGINX | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
file: resources/docker/nginx/Dockerfile | |
push: true | |
tags: ${{ secrets.DOCKERHUB_USERNAME }}/lanops-manager:nginx-latest | |
- | |
name: Push - APP | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
file: resources/docker/php/Dockerfile | |
push: true | |
tags: ${{ secrets.DOCKERHUB_USERNAME }}/lanops-manager:app-latest | |
- | |
name: Discord Webhook Action - Build Success | |
uses: tsickert/[email protected] | |
with: | |
webhook-url: ${{ secrets.DISCORD_WEBHOOK_URL }} | |
embed-title: ${{ github.repository }} - Build Success! | |
embed-url: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} | |
embed-description: ${{ github.event.head_commit.message }} | |
- | |
name: Discord Webhook Action - Build Failure | |
if: failure() | |
uses: tsickert/[email protected] | |
with: | |
webhook-url: ${{ secrets.DISCORD_WEBHOOK_URL }} | |
embed-title: ${{ github.repository }} - Build Failure! | |
embed-url: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} | |
embed-description: ${{ github.event.head_commit.message }} |