Skip to content

Fix makefile from doing a dumb (#21) #26

Fix makefile from doing a dumb (#21)

Fix makefile from doing a dumb (#21) #26

Workflow file for this run

name: C/C++ CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name make prefix
run: mkdir -p ./usr/bin ./usr/share/man/man1/

Check failure on line 17 in .github/workflows/c-cpp.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/c-cpp.yml

Invalid workflow file

You have an error in your yaml syntax on line 17
- name: make
run: make CFLAGS="-static"
- name: make install
run: DESTDIR=. PREFIX=/usr/ make install
- name:
run: tar czf aee-14.1.tar.gz ./usr/
- name: make uninstall
run: make uninstall
- name: make clean
run: make clean