docs(plrom): update MacBook Air from M1 to M5 #25
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: Auto Publish | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| publish: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up environment | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y jq | |
| - name: Set execute permission | |
| run: chmod +x ./publish.sh | |
| - name: Run publish script | |
| env: | |
| XLOG_TOKEN: ${{ secrets.XLOG_TOKEN }} | |
| run: ./publish.sh |