-
-
Notifications
You must be signed in to change notification settings - Fork 57
40 lines (35 loc) · 1022 Bytes
/
image.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
on:
pull_request:
push:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: docker login --username '${{ github.actor }}' --password-stdin ghcr.io <<< "$GHCR_TOKEN"
env:
GHCR_TOKEN: ${{ secrets.GITHUB_TOKEN }}
if: github.event_name != 'pull_request'
- run: docker buildx create --driver docker-container --use
- name: build
run: |
set -euxo pipefail
if [ ${{ github.event_name }} = 'push' ]; then
args=(
--tag ghcr.io/getsentry/snuba:latest
--tag ghcr.io/getsentry/snuba:amd64-latest
--push
)
else
args=()
fi
docker buildx build \
--pull \
--platform linux/amd64 \
--cache-from ghcr.io/getsentry/snuba:latest \
--cache-to type=inline \
--tag ghcr.io/getsentry/snuba:${{ github.sha }} \
--target application \
"${args[@]}" \
.