Skip to content

Revise system behaviour for SSO users #6474

Revise system behaviour for SSO users

Revise system behaviour for SSO users #6474

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: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Docker meta
id: meta
uses: docker/[email protected]
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: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
id: docker_build
uses: docker/build-push-action@v6
with:
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max
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@v1
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
run: |
first_line=$(echo "${{ github.event.head_commit.message }}" | head -n1)
co_authors=$(echo "${{ github.event.head_commit.message }}" | grep -h 'Co-authored-by:' | sort -u | cut -d: -f2- | paste -sd, -)
{
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@v1
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 }}"