fix(deps): update rust crate metrics to 0.24.0 #2517
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: Container | |
| on: | |
| push: | |
| branches: | |
| - main | |
| tags: | |
| - '@lagoss/serverless@*' | |
| - '@lagoss/dashboard@*' | |
| pull_request: | |
| jobs: | |
| define-matrix: | |
| name: Define matrix | |
| runs-on: ubuntu-latest | |
| outputs: | |
| images: ${{ steps.set-matrix.outputs.result }} | |
| steps: | |
| - name: Set matrix | |
| uses: actions/github-script@v8 | |
| id: set-matrix | |
| with: | |
| script: | | |
| const images = [] | |
| if (context.eventName === 'pull_request' || context.ref === 'refs/heads/main') { | |
| images.push('serverless', 'dashboard') | |
| } | |
| if (context.eventName === 'push' && context.ref.startsWith('refs/tags/')) { | |
| const match = context.ref.match(/@lagoss\/(\w+)@(\d+\.\d+\.\d+)/) | |
| if (match) { | |
| images.push(match[1]) | |
| } | |
| } | |
| console.log(images) | |
| return images | |
| create-container-image: | |
| name: Create "${{matrix.image}}" container image | |
| needs: define-matrix | |
| runs-on: ubuntu-latest | |
| if: needs.define-matrix.outputs.images != '[]' | |
| strategy: | |
| matrix: | |
| image: ${{fromJson(needs.define-matrix.outputs.images)}} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up QEMU | |
| uses: docker/setup-qemu-action@v3 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Docker meta | |
| id: meta | |
| uses: docker/metadata-action@v5 | |
| with: | |
| images: | | |
| ghcr.io/${{ github.repository_owner }}/${{matrix.image}} | |
| tags: | | |
| type=match,pattern=@lagoss\/${{matrix.image}}@(\d+\.\d+\.\d+),enable=${{startsWith(github.ref, 'refs/tags/')}},group=1 | |
| type=ref,event=pr | |
| type=raw,value=next,enable={{is_default_branch}} | |
| - name: Login to ghcr.io registry | |
| if: github.event_name != 'pull_request' | |
| uses: docker/login-action@v3 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Build and push | |
| uses: docker/build-push-action@v6 | |
| if: "!startsWith(github.ref, 'refs/tags/') || contains(github.ref, matrix.image)" | |
| with: | |
| context: . | |
| push: ${{ github.event_name != 'pull_request' }} | |
| tags: ${{ steps.meta.outputs.tags }} | |
| labels: ${{ steps.meta.outputs.labels }} | |
| file: docker/Dockerfile.${{matrix.image}} | |
| platforms: ${{ startsWith(github.ref, 'refs/tags/') && 'linux/amd64,linux/arm64' || 'linux/amd64' }} # only build for amd64 on PRs to speed up CI job | |
| cache-from: type=gha | |
| cache-to: type=gha,mode=max |