move workflow #2
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: Workflow template | |
| on: | |
| push: | |
| pull_request: | |
| branches: | |
| - testing | |
| paths: | |
| - './scripts/init2.sh' | |
| jobs: | |
| build: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Get current date | |
| id: date | |
| run: echo "::set-output name=date::$(date +'%Y-%m-%d')" | |
| - name: Checkout builder | |
| uses: actions/checkout@v1 | |
| - name: Create artifacts directory | |
| run: mkdir ./artifacts | |
| - name: Compile for pyboard v11 | |
| if: always() | |
| run: source init2.sh && build_stm32 "PYBV11" |