From f7ddb7a3d1fc5b073f37342af0ef98ebced8da21 Mon Sep 17 00:00:00 2001 From: "hltiffany@csuchico.edu" Date: Mon, 20 Feb 2023 11:22:39 -0800 Subject: [PATCH] Added yml file --- .github/workflows/ymlfile.yml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .github/workflows/ymlfile.yml diff --git a/.github/workflows/ymlfile.yml b/.github/workflows/ymlfile.yml new file mode 100644 index 0000000..5ff700d --- /dev/null +++ b/.github/workflows/ymlfile.yml @@ -0,0 +1,31 @@ +me: Docker Image CI + +on: + push: + branches: + - '**' + pull_request: + branches: + - '**' + + jobs: + docker: + runs-on: ubuntu-latest + steps: + - + name: Checkout + uses: actions/checkout@v3 + - + name: QEMU + uses: docker/setup-qemu-action@v2 + - + name: Builder (Buildx) + uses: docker/setup-buildx-action@v2 + - + name: Build + uses: docker/build-push-action@v4 + with: + context: . + platforms: linux/amd64,linux/arm64 + push: false +