update #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build on Linux | |
on: | |
push: | |
branches: | |
- main | |
- test* | |
jobs: | |
build-runspace: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check Out Repository | |
uses: actions/checkout@v2 | |
with: | |
ref: ${{ github.head_ref }} | |
- name: Run Build Script | |
run: | | |
chmod +x build.sh | |
./build.sh | |
shell: bash | |
- name: Commit Changes | |
run: | | |
git config --local user.email "action@github.com" | |
git config --local user.name "GitHub Action" | |
git add . | |
git commit -m "Compile Office Utility" | |
git push | |
shell: bash |