-
Notifications
You must be signed in to change notification settings - Fork 4
48 lines (43 loc) · 1.21 KB
/
dev-tools.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
41
42
43
44
45
46
47
48
name: Build Developer Tools
on:
push:
branches:
- master
paths:
- "dev-tools/**"
- ".github/workflows/dev-tools.yml"
- ".github/actions/build-docker-image/**"
pull_request:
paths:
- "dev-tools/**"
- ".github/workflows/dev-tools.yml"
- ".github/actions/build-docker-image/**"
workflow_dispatch:
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
push_to_registry:
name: Push Docker image to GitHub Packages
runs-on: ubuntu-latest
permissions:
packages: write
contents: read
pull-requests: write
security-events: write
id-token: write
attestations: write
steps:
- name: Check out the repo
uses: actions/checkout@v4
- name: Build and push image
uses: ./.github/actions/build-docker-image
with:
context: dev-tools
push: ${{ github.base_ref == null }}
cache-from: type=gha,scope=dev-tools
cache-to: type=gha,mode=max,scope=dev-tools
primaryTag: ghcr.io/automattic/vip-container-images/dev-tools:0.9
tags: ghcr.io/automattic/vip-container-images/dev-tools:0.9