Skip to content

Add github action config #12

Add github action config

Add github action config #12

Workflow file for this run

name: Build
on: push
jobs:
build:
name: Toolchain build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Install dependencies
run: sudo ./install-deps
- name: Build
run: ./build-toolchain
- name: Extract commit SHA
shell: bash
run: |
echo "SHORT_SHA=$(git rev-parse --short "$GITHUB_SHA")" >> "$GITHUB_ENV"
echo $SHORT_SHA
- name: Package
run: |
cd ./INSTALL
zip -r9 ../tricore-gcc-11.3.1-${{ env.SHORT_SHA }}-linux.zip .
cd ../INSTALL-WIN
zip -r9X ../tricore-gcc-11.3.1-${{ env.SHORT_SHA }}-win32.zip .
- name: Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
files: *.zip

Check failure on line 40 in .github/workflows/build.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/build.yml

Invalid workflow file

You have an error in your yaml syntax on line 40