Skip to content

Commit

Permalink
Add basic CI workflow to test action works
Browse files Browse the repository at this point in the history
Signed-off-by: Nick Adcock <nick.adcock@docker.com>
  • Loading branch information
Nick Adcock committed Mar 5, 2020
1 parent 0d47b3c commit 676cae2
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: CI

on:
push:
pull_request:

jobs:
build:
name: build
runs-on: ubuntu-latest
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
3 changes: 3 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
FROM alpine:3

ENTRYPOINT ["echo", "docker github actions"]

0 comments on commit 676cae2

Please sign in to comment.