Skip to content

Update makeforme.yaml #4

Update makeforme.yaml

Update makeforme.yaml #4

Workflow file for this run

name: makeforme
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout repo
uses: actions/checkout@v3
- name: build application
run: |
make
- name: Commit changes
run: |
git config --global user.email "no-reply@github.com"
git config --global user.name "GitHub Actions"
git add README.md
git commit -m "Update readme"
git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}
git push
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}