Merge pull request #24 from LavredisG/patch-1 #50
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: Build/Release OpenEVSE | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
info: | |
name: Get event information | |
runs-on: ubuntu-latest | |
steps: | |
- name: Dump context | |
uses: crazy-max/ghaction-dump-context@v1 | |
build_platform_io: | |
name: Build using PlatformIO | |
uses: OpenEVSE/open_evse/.github/workflows/build_platformio.yml@master | |
build_arduino: | |
name: Build using Arduino | |
uses: OpenEVSE/open_evse/.github/workflows/build_arduino.yml@master | |
release: | |
name: Create pre-release | |
needs: | |
- build_platform_io | |
- build_arduino | |
if: github.ref == 'refs/heads/master' | |
uses: OpenEVSE/open_evse/.github/workflows/release.yml@master |