✅ Add / use deploy script #484
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
# | |
# deploy.yml | |
# | |
# Rebuild the bugfix-2.1.x branch whenever 'import-2.1.x' is pushed | |
# | |
name: Deploy | |
on: | |
push: | |
branches: | |
- import-2.1.x | |
jobs: | |
deploy: | |
if: github.repository == 'MarlinFirmware/Configurations' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out | |
uses: actions/checkout@v4 | |
# Run the mfconfig script with CI action | |
- name: Deploy bugfix-2.1.x | |
run: bin/mfconfig CI |