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 +