Library Binaries Update #88766
This file contains 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: Library Binaries Update | |
on: | |
schedule: | |
- cron: '*/15 * * * *' | |
workflow_dispatch: | |
jobs: | |
updater: | |
name: Update latest D++ | |
runs-on: ubuntu-20.04 | |
strategy: | |
fail-fast: false # Don't fail everything if one fails. We want to test each OS/Compiler individually | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- name: Install apt packages | |
run: sudo sed -i 's/azure\.//' /etc/apt/sources.list && sudo apt update && sudo apt install unzip dos2unix && git config --global user.email "[email protected]" && git config --global user.name "D++ Update Bot" | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Run updater | |
run: pwd && ./updatedpp.sh | |