diff --git a/.github/workflows/image.yml b/.github/workflows/image.yml new file mode 100644 index 0000000..7e31920 --- /dev/null +++ b/.github/workflows/image.yml @@ -0,0 +1,24 @@ +name: Build and Push to Dockerhub + +on: + push: + branches: ["master"] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: checkout code + uses: actions/checkout@v2 + - name: install buildx + id: buildx + uses: crazy-max/ghaction-docker-buildx@v1 + with: + version: latest + - name: login to docker hub + run: echo "${{ secrets.DOCKER_PASSWORD }}" | docker login -u "${{ secrets.DOCKER_USERNAME }}" --password-stdin + - name: build and push the image + run: | + docker buildx build --push \ + --tag leen15/docker-s3-dir-backup:latest \ + --platform linux/amd64,linux/arm64 .