mirror of
https://github.com/MarlinFirmware/Configurations.git
synced 2025-12-26 17:38:34 -07:00
27 lines
476 B
YAML
27 lines
476 B
YAML
#
|
|
# 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
|
|
paths:
|
|
- 'config/**'
|
|
- 'bin/mfconfig'
|
|
|
|
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
|