Skip to content

Switching deployment pipelines to use pipedream #104

Switching deployment pipelines to use pipedream

Switching deployment pipelines to use pipedream #104

Workflow file for this run

name: build
on:
pull_request:
push:
branches: [main]
jobs:
build-image:
strategy:
matrix:
arch: [amd64]
runs-on: ubuntu-latest
env:
IMG_CACHE: ghcr.io/getsentry/session-replay-analyzer:${{ matrix.arch }}-latest
IMG_VERSIONED: ghcr.io/getsentry/session-replay-analyzer:${{ matrix.arch }}-${{ github.sha }}
steps:
- uses: actions/checkout@v3
- run: docker run --rm --privileged tonistiigi/binfmt --install arm64
if: matrix.arch == 'arm64'
- name: build
run: |
set -euxo pipefail
args=()
if docker pull -q "$IMG_CACHE"; then
args+=(--cache-from "$IMG_CACHE")
fi
docker buildx build \
"${args[@]}" \
--build-arg BUILDKIT_INLINE_CACHE=1 \
--platform linux/${{ matrix.arch }} \
--tag "$IMG_VERSIONED" \
.
docker tag "$IMG_VERSIONED" "$IMG_CACHE"
- name: push
if: github.event_name != 'pull_request'
run: |
set -euxo pipefail
docker login --username '${{ github.actor }}' --password '${{ secrets.GITHUB_TOKEN }}' ghcr.io
docker push "$IMG_VERSIONED"
docker push "$IMG_CACHE"
# for now arm64 is too slow so just retag this as latest
docker tag "$IMG_VERSIONED" ghcr.io/getsentry/session-replay-analyzer:latest
docker push ghcr.io/getsentry/session-replay-analyzer:latest