stunning screenshots in seconds https://moocup.jaydip.me

added github actions

+29
+29
.github/workflows/docker-build.yml
··· 1 + name: Build and Push Docker image 2 + 3 + on: 4 + push: 5 + branches: ["main"] 6 + 7 + jobs: 8 + docker: 9 + runs-on: ubuntu-latest 10 + 11 + steps: 12 + - name: Checkout source 13 + uses: actions/checkout@v4 14 + 15 + - name: Log in to Docker Hub 16 + uses: docker/login-action@v2 17 + with: 18 + username: ${{ secrets.DOCKERHUB_USERNAME }} 19 + password: ${{ secrets.DOCKERHUB_TOKEN }} 20 + 21 + - name: Set up Docker Buildx 22 + uses: docker/setup-buildx-action@v3 23 + 24 + - name: Build and push 25 + uses: docker/build-push-action@v5 26 + with: 27 + context: . 28 + push: true 29 + tags: ${{ secrets.DOCKERHUB_USERNAME }}/moocup:latest