Twin Cobra Release 20251209 #38
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 Custom Database | |
| on: | |
| push: | |
| branches: | |
| - develop | |
| workflow_dispatch: | |
| jobs: | |
| build_db: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - run: sudo apt-get install sharutils | |
| - uses: actions/checkout@v2 | |
| - name: Build Custom Database for MiSTer Downloader | |
| run: set -o pipefail && curl --fail --location https://raw.githubusercontent.com/theypsilon/Downloader_DB-Template_MiSTer/main/.github/build_db.py | python3 - | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |