1
0
Fork 0
mirror of https://github.com/docker/build-push-action.git synced 2025-04-04 06:00:08 +02:00
build-push-action/.github/workflows/main.yml
2020-08-27 10:16:27 +08:00

38 lines
721 B
YAML

name: CI
on:
push:
branches:
- master
- build-options
tags:
- '*'
pull_request:
jobs:
build:
name: build
runs-on: ubuntu-latest
timeout-minutes: 3
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Run local registry
run: docker run -d -p 5000:5000 registry:2
- name: Build and push image
uses: ./
env:
DOCKER_BUILDKIT: 1
with:
registry: localhost:5000
repository: temp/workflow
tags: foo
- name: Remove local image
run: docker image rm localhost:5000/temp/workflow:foo
- name: Run image from registry
run: docker run localhost:5000/temp/workflow:foo