FluidNC Release Builder #183
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: FluidNC Release Builder | |
on: | |
workflow_dispatch: | |
inputs: | |
tag: | |
description: 'Release version' | |
required: true | |
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: Set release version | |
run: | | |
git config user.email "[email protected]" | |
git config user.name "Mitch Bradley" | |
git tag "${{ github.event.inputs.tag }}" -a -m "Release test" | |
- name: Build | |
run: python build-release.py | |
- name: Create release | |
uses: softprops/action-gh-release@v1 | |
with: | |
tag_name: ${{ github.event.inputs.tag }} | |
files: | | |
release/*.zip | |
release/*.elf | |
draft: True | |
- name: Deploy to fluidnc-releases | |
uses: datalbry/[email protected] | |
env: | |
API_TOKEN_GITHUB: ${{ secrets.RELEASE_COPY_TOKEN }} | |
with: | |
source_folder: 'release/current' | |
destination_repo: 'bdring/fluidnc-releases' | |
destination_branch: 'main' | |
destination_folder: releases/${{ github.event.inputs.tag }} | |
user_email: [email protected] | |
user_name: 'Bart Dring' | |
commit_msg: Release ${{ github.event.inputs.tag }} | |
# - name: Upload mac bundle | |
# uses: actions/upload-artifact@v2 | |
# with: | |
# name: release-macos | |
# path: release/*macos* | |
# - name: Upload Windows bundle | |
# uses: actions/upload-artifact@v2 | |
# with: | |
# name: release-win32 | |
# path: release/*win* | |
# - name: Upload Linux bundle | |
# uses: actions/upload-artifact@v2 | |
# with: | |
# name: release-linux | |
# path: release/*linux* |