init commit

This commit is contained in:
2023-09-12 22:53:40 +03:00
commit 6b8df2f7b4
3 changed files with 42 additions and 0 deletions

15
action.yml Normal file
View File

@@ -0,0 +1,15 @@
name: 'ARM GCC build'
description: 'Building arm projects'
inputs:
command:
description: 'Command'
required: true
default: arm-none-eabi-gcc --version
runs:
using: 'docker'
image: 'Dockerfile'
args:
- /bin/bash
- -c
- ${{ inputs.command }}