[Ultimate Hosts Blacklist][Deployment Scheduler] #3464
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: UHB Deployment Workflow | |
| on: | |
| push: | |
| branches: | |
| - "master" | |
| env: | |
| GIT_NAME: "${{ secrets.GIT_BOT_NAME }}" | |
| GIT_EMAIL: "${{ secrets.GIT_BOT_EMAIL }}" | |
| GITHUB_TOKEN: "${{ secrets.BOT_REPO_PAT }}" | |
| jobs: | |
| single: | |
| name: Run the deployment launcher | |
| runs-on: "${{ matrix.os }}" | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python_version: | |
| - "3.11" | |
| os: | |
| - ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| name: Clone repository | |
| with: | |
| token: "${{ secrets.BOT_REPO_PAT }}" | |
| - name: Set up Python ${{ matrix.python_version }} | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: ${{ matrix.python_version }} | |
| - name: Install dependencies | |
| run: | | |
| pip install ultimate-hosts-blacklist-deployment-launcher | |
| - name: Get PyFunceble version | |
| run: | | |
| PyFunceble --version | |
| - name: Get Launcher version | |
| run: | | |
| ultimate-hosts-blacklist-deployment-launcher --version | |
| - name: Run Launcher | |
| run: | | |
| ultimate-hosts-blacklist-deployment-launcher |