Add support for PUT, PATCH, and DELETE methods in Module.yaml and mod… #14
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and publish docker image to dockerHub | |
on: | |
push: | |
branches: [main] | |
jobs: | |
build-push-image: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Log in to the Container registry | |
uses: docker/login-action@v1 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v1 | |
- name: Install QEMU binaries | |
run: docker run --privileged --rm tonistiigi/binfmt --install all | |
- name: Build and push using make | |
run: make create_and_push_multi_platform |