-
-
Notifications
You must be signed in to change notification settings - Fork 4
32 lines (30 loc) · 854 Bytes
/
python-example-image.yml
File metadata and controls
32 lines (30 loc) · 854 Bytes
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
on:
pull_request:
paths:
- 'clients/python/**'
push:
branches:
- main
paths:
- 'clients/python/**'
jobs:
build:
name: 'Build example app image'
runs-on: ubuntu-24.04
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Build and push Python example image
uses: getsentry/action-build-and-push-images@a53f146fc1ea3cb404f2dcf7378f5b60dd98d3ca
with:
image_name: 'taskbroker-python-example'
platforms: linux/amd64
dockerfile_path: './clients/python/Dockerfile.example'
dockerfile_context: './clients/python'
ghcr: true
publish_on_pr: true
google_ar: false
tag_nightly: false
tag_latest: false