diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..e5cb941 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,36 @@ +name: ToYou Cleanup CI + +on: + push: + branches: [ "master" ] + workflow_dispatch: + +jobs: + ci: + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: Set up QEMU + uses: docker/setup-qemu-action@v2 + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v2 + + - name: Login to DockerHub + uses: docker/login-action@v2 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} + + - name: Build and Push Docker Image + id: docker_build + uses: docker/build-push-action@v4 + with: + context: . + push: true + platforms: linux/amd64 + tags: | + ${{ secrets.DOCKERHUB_USERNAME }}/toyou-cleanup:latest \ No newline at end of file