ci: stabilize pipelines, optimize db integrity checks and refactor wo… #174
Workflow file for this run
This file contains hidden or 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 and Push | |
| on: | |
| push: | |
| branches: [main, dev, 'feat/**', 'fix/**', 'refactor/**', 'chore/**'] | |
| pull_request: | |
| branches: [main, dev] | |
| workflow_dispatch: | |
| inputs: | |
| force_push: | |
| description: 'Force push image to registry?' | |
| type: boolean | |
| default: false | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| env: | |
| FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true | |
| REGISTRY: ghcr.io | |
| IMAGE_NAME: ${{ github.repository }} | |
| jobs: | |
| build-push: | |
| runs-on: ubuntu-latest | |
| env: | |
| IS_BASE_BRANCH: ${{ github.ref_name == 'main' || github.ref_name == 'dev' }} | |
| IS_PUSH: ${{ github.event_name == 'push' }} | |
| FORCE_PUSH: ${{ github.event.inputs.force_push == 'true' }} | |
| permissions: | |
| contents: read | |
| packages: write | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Log in to the Container registry | |
| if: ${{ (env.IS_PUSH == 'true' && env.IS_BASE_BRANCH == 'true') || | |
| env.FORCE_PUSH == 'true' }} | |
| uses: docker/login-action@v3 | |
| with: | |
| registry: ${{ env.REGISTRY }} | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Extract metadata (tags, labels) | |
| id: meta | |
| uses: docker/metadata-action@v5 | |
| with: | |
| images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} | |
| tags: | | |
| type=ref,event=branch | |
| type=sha,format=short | |
| # latest вешаем только когда мерджим в main | |
| type=raw,value=latest,enable=${{ github.ref_name == 'main' }} | |
| - name: Build and push Docker image | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: . | |
| file: ./Dockerfile.prod | |
| push: ${{ (env.IS_PUSH == 'true' && env.IS_BASE_BRANCH == 'true') || | |
| env.FORCE_PUSH == 'true' }} | |
| tags: ${{ steps.meta.outputs.tags }} | |
| labels: ${{ steps.meta.outputs.labels }} | |
| cache-from: type=gha | |
| cache-to: type=gha,mode=max |