Do not access location during import of tracker module
#10687
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 Private Images GHCR | |
| on: | |
| push: | |
| branches: [master, stable] | |
| tags: ['r*'] | |
| pull_request: | |
| types: [synchronize, labeled] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| if: ${{ github.event_name == 'push' || contains(github.event.pull_request.labels.*.name, 'preview') }} | |
| runs-on: blacksmith-4vcpu-ubuntu-2404 | |
| permissions: | |
| contents: read | |
| packages: write | |
| steps: | |
| - name: Docker meta | |
| id: meta | |
| uses: docker/metadata-action@dc802804100637a589fabce1cb79ff13a1411302 # v6.2.0 | |
| env: | |
| DOCKER_METADATA_PR_HEAD_SHA: true | |
| with: | |
| images: ghcr.io/plausible/analytics/ee | |
| tags: | | |
| type=ref,event=pr | |
| type=ref,event=branch | |
| type=ref,event=tag | |
| type=sha | |
| - name: Setup Blacksmith Builder | |
| uses: useblacksmith/setup-docker-builder@5fe3b77775f1dd55595beb998036fe1f2cf47118 # v1.10.0 | |
| - name: Login to GitHub Container Registry | |
| uses: docker/login-action@af1e73f918a031802d376d3c8bbc3fe56130a9b0 # v4.4.0 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Build and push | |
| id: docker_build | |
| uses: useblacksmith/build-push-action@ae61d84c78ee061560aeb3cf9ddc12ab3d0cef71 # v2 | |
| with: | |
| push: true | |
| tags: ${{ steps.meta.outputs.tags }} | |
| labels: ${{ steps.meta.outputs.labels }} | |
| build-args: | | |
| MIX_ENV=prod | |
| BUILD_METADATA=${{ steps.meta.outputs.json }} | |
| - name: Image digest | |
| run: echo ${{ steps.docker_build.outputs.digest }} | |
| - name: Notify team on failure | |
| if: ${{ failure() && github.ref == 'refs/heads/master' }} | |
| uses: fjogeleit/http-request-action@f98bb26551cd1af7d3eb2674578a80754ece88db # v2.0.1 | |
| with: | |
| url: ${{ secrets.BUILD_NOTIFICATION_URL }} | |
| method: 'POST' | |
| customHeaders: '{"Content-Type": "application/json"}' | |
| data: '{"content": "<a href=\"https://github.com/plausible/analytics/actions/workflows/build-private-images.yml\">Build failed</a>"}' | |
| - name: Get first line and Co-Authored-By lines of the commit message | |
| if: ${{ success() && github.ref == 'refs/heads/master' }} | |
| id: commitmsg | |
| env: | |
| COMMIT_MSG: ${{ github.event.head_commit.message }} | |
| run: | | |
| first_line=$(printf '%s\n' "$COMMIT_MSG" | head -n1 | xargs) | |
| co_authors=$(printf '%s\n' "$COMMIT_MSG" | grep -h 'Co-authored-by:' | sort -u | cut -d: -f2- | paste -sd, - | xargs) | |
| { | |
| echo "first_line=$first_line" | |
| echo "co_authors=$co_authors" | |
| } >> $GITHUB_OUTPUT | |
| - name: Notify team on success | |
| if: ${{ success() && github.ref == 'refs/heads/master' }} | |
| uses: fjogeleit/http-request-action@f98bb26551cd1af7d3eb2674578a80754ece88db # v2.0.1 | |
| with: | |
| url: ${{ secrets.BUILD_NOTIFICATION_URL }} | |
| method: 'POST' | |
| customHeaders: '{"Content-Type": "application/json"}' | |
| escapeData: 'true' | |
| data: | | |
| { | |
| "content": "<h1>🚀 Deploying ${{ steps.commitmsg.outputs.first_line }}</h1><p>Author(s): ${{ github.event.head_commit.author.name }}<br/>${{ steps.commitmsg.outputs.co_authors}}</p><p>Commit: <a href=\"${{ github.event.head_commit.url }}\">${{ github.sha }}</a></p>" | |
| } | |
| - name: Set Honeycomb marker on success | |
| if: ${{ success() && github.ref == 'refs/heads/master' }} | |
| uses: cnkk/honeymarker-action@1bd92aec746e38efe43a0faee94ced1ebb930712 | |
| with: | |
| apikey: ${{ secrets.HONEYCOMB_MARKER_APIKEY }} | |
| dataset: 'plausible-prod' | |
| message: "${{ github.sha }}" |