-
Notifications
You must be signed in to change notification settings - Fork 540
41 lines (37 loc) · 1.26 KB
/
publish-alloy-devel-pr.yml
File metadata and controls
41 lines (37 loc) · 1.26 KB
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
41
name: Publish alloy-devel containers
on:
pull_request:
types: [labeled]
permissions:
contents: read
jobs:
publish_linux_container:
if: ${{ github.repository == 'grafana/alloy' && contains(github.event.pull_request.labels.*.name, 'publish-dev:linux')}}
uses: ./.github/workflows/publish-alloy-linux.yml
permissions:
contents: read
id-token: write
with:
img-name: alloy-devel-pr
dev: true
pr-number: ${{ github.event.pull_request.number }}
publish_linux_boringcrypto_container:
if: ${{ github.repository == 'grafana/alloy' && contains(github.event.pull_request.labels.*.name, 'publish-dev:linux-bc')}}
uses: ./.github/workflows/publish-alloy-linux.yml
permissions:
contents: read
id-token: write
with:
img-name: alloy-devel-boringcrypto-pr
dev: true
pr-number: ${{ github.event.pull_request.number }}
publish_windows_container:
if: ${{ github.repository == 'grafana/alloy' && contains(github.event.pull_request.labels.*.name, 'publish-dev:windows')}}
uses: ./.github/workflows/publish-alloy-windows.yml
permissions:
contents: read
id-token: write
with:
img-name: alloy-devel-pr
dev: true
pr-number: ${{ github.event.pull_request.number }}