main.yml 629 B

1234567891011121314151617181920212223242526
  1. name: Publish Docker image
  2. on:
  3. push:
  4. branches: [ "main" ]
  5. jobs:
  6. push_to_registry:
  7. name: Push Docker image to Docker Hub
  8. runs-on: ubuntu-latest
  9. steps:
  10. - name: Check out the repo
  11. uses: actions/checkout@v3
  12. - name: Log in to Docker Hub
  13. uses: docker/login-action@v2
  14. with:
  15. username: ${{ secrets.DOCKERHUB_USER }}
  16. password: ${{ secrets.DOCKERHUB_TOKEN }}
  17. - name: Build and push Docker image
  18. uses: docker/build-push-action@v4
  19. with:
  20. context: .
  21. push: true
  22. tags: track3/pocketbase-comment:latest