cloudflare/pint

Public

mirrored from https://github.com/cloudflare/pintAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v0.10.0

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

.github/workflows/docker.yml

36lines · modecode

1name: Docker
2
3on:
4 push:
5 branches:
6 - main
7 pull_request:
8 branches:
9 - main
10 release:
11 types:
12 - published
13
14jobs:
15 build:
16 runs-on: ubuntu-latest
17 steps:
18 - name: Check out code
19 uses: actions/checkout@v2
20 with:
21 fetch-depth: 0
22
23 - name: Set up QEMU
24 uses: docker/setup-qemu-action@v1
25
26 - name: Set up Docker Buildx
27 uses: docker/setup-buildx-action@v1
28
29 - name: Build and push
30 id: docker_build
31 uses: docker/build-push-action@v2
32 with:
33 context: .
34 file: ./Dockerfile
35 platforms: linux/amd64,linux/arm64
36 push: false
37