reverted host tools back to reference design and fixed design doc #249
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: Build | |
| on: | |
| workflow_dispatch: | |
| push: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout branch | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.x' | |
| - name: Run | |
| env: | |
| TOKEN: ${{ secrets.TOKEN }} | |
| IP: ${{ secrets.IP }} | |
| PORT: ${{ secrets.PORT }} | |
| ACTOR: ${{ github.actor }} | |
| COMMIT_MESSAGE: ${{ github.event.head_commit.message }} | |
| run: python upload.py '${{ github.sha }}' "$ACTOR" "$COMMIT_MESSAGE" '${{ github.run_id }}' |