DNS SERVER: Fixing IPV6 query answers which could fail in some cases … #241
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: Docs | |
| on: | |
| push: | |
| branches: | |
| - master | |
| permissions: | |
| contents: write | |
| env: | |
| CURRENT_BRANCH: ${{ github.head_ref || github.ref_name }} | |
| jobs: | |
| docs-update: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Install Deps | |
| run: sudo apt-get install docker-compose -y | |
| - name: Checkout code | |
| uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: '0' | |
| - name: Docs Update | |
| run: docker-compose -f docker-compose-deploy.yml run --rm deploy /bin/builder.bash deploy-docs | |
| env: | |
| REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |