Skip to content

added automated workflow for ev3 executable compilation #1

added automated workflow for ev3 executable compilation

added automated workflow for ev3 executable compilation #1

Workflow file for this run

ev3-compile.yml: name: ev3 compile

Check failure on line 1 in .github/workflows/ev3-compile.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ev3-compile.yml

Invalid workflow file

You have an error in your yaml syntax
on:
push:
branches:
- master
permissions:
contents: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build Docker image
run: docker build -t ev3dev-cpp-compiler .
- name: Make script executable
run: chmod +x ./compile_all.sh
- name: Run script (generates main1, main2, main3, main4, main5)
run: ./compile_all.sh
- name: Create GitHub Release
uses: softprops/action-gh-release@v1
with:
tag_name: master-${{ github.sha }}
name: "Master Release ${{ github.sha }}"
files: |
main1
main2
main3
main4
main5