closes #7249: for stairs, change the first/last tread lengths to less… #1
This file contains hidden or 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: ci-ifctester-org | |
| on: | |
| workflow_dispatch: | |
| push: | |
| paths: | |
| - src/ifctester/** | |
| jobs: | |
| publish_website: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Checkout ifctester_org_static_html | |
| uses: actions/checkout@v4 | |
| with: | |
| repository: IfcOpenShell/ifctester_org_static_html | |
| token: ${{ secrets.IFCOPENBOT_TOKEN }} | |
| path: ifctester_org_static_html | |
| - name: Build webapp | |
| working-directory: ./src/ifctester | |
| run: | | |
| sudo apt update && sudo apt install -y nodejs | |
| git config --global user.name 'IfcOpenBot' | |
| git config --global user.email 'IfcOpenBot@users.noreply.github.com' | |
| make webapp-build | |
| - name: Commit and push | |
| run: | | |
| cp -r src/ifctester/webapp/dist/* ifctester_org_static_html/ | |
| git -C ifctester_org_static_html add . | |
| git -C ifctester_org_static_html commit --allow-empty -m "$(git log --oneline -1)" | |
| git -C ifctester_org_static_html push |