mirror of
https://github.com/docker/build-push-action.git
synced 2025-06-28 15:26:42 +02:00
initial code
This commit is contained in:
parent
84ad562665
commit
6802d7df2c
8 changed files with 576 additions and 12 deletions
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
|
@ -15,8 +15,6 @@ on:
|
|||
description: 'BuildKit image'
|
||||
default: 'moby/buildkit:buildx-stable-1'
|
||||
required: false
|
||||
schedule:
|
||||
- cron: '0 10 * * *'
|
||||
push:
|
||||
branches:
|
||||
- 'master'
|
||||
|
|
28
.github/workflows/debug.yaml
vendored
Normal file
28
.github/workflows/debug.yaml
vendored
Normal file
|
@ -0,0 +1,28 @@
|
|||
name: Debug WarpBuild Docker Configure Action
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- prajjwal-warp-540
|
||||
|
||||
|
||||
jobs:
|
||||
test:
|
||||
name: Debug Run ${{ matrix.run_number }}
|
||||
runs-on: warp-ubuntu-latest-x64-2x
|
||||
strategy:
|
||||
matrix:
|
||||
run_number: [1]
|
||||
fail-fast: false
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Build Dockerfile in __tests__ using Buildx
|
||||
uses: ./action
|
||||
with:
|
||||
context: .
|
||||
file: __tests__/Dockerfile
|
||||
tags: test-image-run-${{ matrix.run_number }}
|
||||
push: false
|
||||
platforms: linux/amd64,linux/arm64
|
2
.github/workflows/e2e.yml
vendored
2
.github/workflows/e2e.yml
vendored
|
@ -6,8 +6,6 @@ concurrency:
|
|||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
schedule:
|
||||
- cron: '0 10 * * *'
|
||||
push:
|
||||
branches:
|
||||
- 'master'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue