fix: enhance Cloudflare challenge solving logic and improve error han… #47
This file contains hidden or 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 a Docker image to ghcr.io | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths-ignore: | |
| - 'README.md' | |
| - '*.md' | |
| - 'LICENSE' | |
| jobs: | |
| docker_publish: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Build and publish a Docker image for ${{ github.repository }} | |
| uses: macbre/push-to-ghcr@master # https://github.com/marketplace/actions/push-to-ghcr | |
| with: | |
| image_name: ${{ github.repository }} # it will be lowercased internally | |
| github_token: ${{ secrets.GITHUB_TOKEN }} |