From c058d1b30b0f070ba88e92059eaa133d107f82e7 Mon Sep 17 00:00:00 2001 From: Mitch Bradley Date: Fri, 10 Dec 2021 07:34:41 -1000 Subject: [PATCH 1/3] Added convert_to_fluidnc action script --- .github/workflows/convert_to_fluidnc.yml | 39 ++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 .github/workflows/convert_to_fluidnc.yml diff --git a/.github/workflows/convert_to_fluidnc.yml b/.github/workflows/convert_to_fluidnc.yml new file mode 100644 index 00000000..2a71f797 --- /dev/null +++ b/.github/workflows/convert_to_fluidnc.yml @@ -0,0 +1,39 @@ +name: FluidNC Release Builder + +on: + workflow_dispatch: + inputs: + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Cache pip + uses: actions/cache@v2 + with: + path: ~/.cache/pip + key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} + restore-keys: | + ${{ runner.os }}-pip- + - name: Cache PlatformIO + uses: actions/cache@v2 + with: + path: ~/.platformio + key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }} + - name: Set up Python + uses: actions/setup-python@v2 + - name: Install PlatformIO + run: | + python -m pip install --upgrade pip + pip install --upgrade platformio + - name: Build + run: | + python convert-machine.py User.h + - name: Upload mac bundle + uses: actions/upload-artifact@v2 + with: + name: FluidNC_Config + path: yaml/User* From aa635514b0332937c775de97833fb156877a7403 Mon Sep 17 00:00:00 2001 From: Mitch Bradley Date: Fri, 10 Dec 2021 07:38:10 -1000 Subject: [PATCH 2/3] Fixed workflow name --- .github/workflows/convert_to_fluidnc.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/convert_to_fluidnc.yml b/.github/workflows/convert_to_fluidnc.yml index 2a71f797..5cbab2aa 100644 --- a/.github/workflows/convert_to_fluidnc.yml +++ b/.github/workflows/convert_to_fluidnc.yml @@ -1,4 +1,4 @@ -name: FluidNC Release Builder +name: FluidNC Configuration Generator on: workflow_dispatch: From 1e4cf43577e9528ec92d17365aec2a1de73f25a6 Mon Sep 17 00:00:00 2001 From: bdring Date: Sat, 18 Dec 2021 09:01:24 -0700 Subject: [PATCH 3/3] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d0a906ea..cac53634 100644 --- a/README.md +++ b/README.md @@ -2,10 +2,10 @@ # Grbl (CNC Controller) For ESP32 - - ## Get the Next Generation! + + The next generation of Grbl_ESP32 was such a massive upgrade we decided to change the name. It is called **FluidNC** and is [available here](https://github.com/bdring/FluidNC). Please check it out and give us a star. It is compatible with all Grbl_ESP32 hardware. This version is only being maintained with existing features. All new features are targeted at FluidNC.