Added automatic build Numbers. Part of #73 #29
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-test | ||
on: | ||
push: | ||
pull_request: | ||
permissions: | ||
contents: read|write | ||
Check failure on line 6 in .github/workflows/build-test.yml GitHub Actions / build-testInvalid workflow file
|
||
pull-requests: read|write | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: 'Checkout Repository' | ||
uses: actions/checkout@v3 | ||
- name: 'Install Nim' | ||
uses: iffy/install-nim@v5 | ||
- name: 'Setup Nim' | ||
uses: jiro4989/setup-nim-action@v1 | ||
with: | ||
nim-version: '2.x' | ||
- name: 'Build Catnip' | ||
run: nim release | ||
- name: 'Install Figlet' | ||
run: sudo apt-get install figlet | ||
- name: 'Run Tests' | ||
run: cd tests && ./test.sh | ||
- name: 'Add build Number' | ||
run: echo 'const BUILDNUMBER = "${{ github.run_id }}"' > ./src/catniplib/global/buildnum.nim | ||
- name: 'Push build Number' | ||
run: | | ||
git config --global user.name 'iinsertNameHere' | ||
git config --global user.email '[email protected]' | ||
git commit -am "Automatic build Number update" | ||
git push |