Skip to content

Commit

Permalink
Setup a workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
roim committed Mar 4, 2021
1 parent 95836d8 commit fbd906b
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/main.yml
@@ -0,0 +1,19 @@
name: repro

on:
push:
branches: [main]
pull_request:
branches: [main]

jobs:
docker:
runs-on: ubuntu-20.04
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Build
id: docker_build
uses: docker/build-push-action@v2

1 comment on commit fbd906b

@roim
Copy link
Owner Author

@roim roim commented on fbd906b Mar 4, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.