/
m0ntana
/
123
Обзор
Документация
Войти
/
m0ntana
/
123
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
2
CI/CD
Аналитика
Безопасность
master
javaMakefileBuildDemo.yaml
36 строк
923 B
h1awdawd/h1
create javaMakefileBuildDemo.yaml
26 дек 2024, 13:33
26 дек 2024, 13:33
806f44e
Код
Авторство
О чём код?
name: Сборка проекта через Makefile on: push: jobs: build-test: name: javaMakefileBuildDemo runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 # Checkout the repository code - name: Install jdk run: | apt-get update apt-get -y install default-jdk - name: build project through Makefile run: | make - name: Set Git user email run: | git config --local user.email "author@gitverse.com" - name: Set Git user name run: | git config --local user.name "author" - name: Create new makefile-build-branch run: | git checkout -b makefile-build-branch git add . git commit -m "a project through Makefile is built" - name: Push to remote branch run: | git push -u origin makefile-build-branch --force