improve: add system dmesg -w as a fallback #31
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: Make release | |
| permissions: | |
| contents: write | |
| on: | |
| push: | |
| jobs: | |
| release: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: "recursive" | |
| fetch-depth: 0 | |
| - name: Clear unrelated files | |
| run: | | |
| rm -rf .github | |
| rm LICENSE | |
| rm README.md | |
| - name: Get latest tag | |
| run: | | |
| latest_tag=$(git describe --tags --abbrev=0 || true) | |
| latest_code=$(echo "${latest_tag}${{ github.run_number }}" | sed -E 's/[^0-9]//g') | |
| echo "latest_tag=${latest_tag}-mod" >> $GITHUB_ENV | |
| echo "latest_code=$latest_code" >> $GITHUB_ENV | |
| zip_name="DebugAssistant-${latest_tag}-mod-${{ github.run_number }}" | |
| echo "zip_name=$zip_name" >> $GITHUB_ENV | |
| - name: Prepare module.prop for upload | |
| run: | | |
| sed -i 's/versionName/${{ env.latest_tag }} (${{ github.run_number }})/' module.prop | |
| sed -i 's/versionNumber/${{ env.latest_code }}/' module.prop | |
| - name: Upload CI artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: ${{ env.zip_name }} | |
| path: "*" | |
| - name: Prepare remote | |
| env: | |
| GH_TOKEN: ${{ github.token }} | |
| run: | | |
| rm -rf ".git" | |
| zip -r "${{ env.zip_name }}.zip" . | |
| git clone "https://github.com/${{ github.repository }}" --depth=1 -b "remote" remote | |
| rm -rf remote/*.zip | |
| mv "${{ env.zip_name }}.zip" remote/ | |
| cd remote/ | |
| sed -Ei 's/"version": ".*?"/"version": "${{ env.latest_tag }} (${{ github.run_number }})"/' update.json | |
| sed -Ei 's/"versionCode": .*?,/"versionCode": ${{ env.latest_code }},/' update.json | |
| sed -Ei 's/"zipUrl": ".*?"/"zipUrl": "https:\/\/raw.githubusercontent.com\/TheSillyOk\/DebugAssistant\/refs\/heads\/remote\/${{ env.zip_name }}.zip"/' update.json | |
| gh auth setup-git | |
| git config --global user.name "github-actions[bot]" | |
| git config --global user.email "github-actions[bot]@users.noreply.github.com" | |
| git add . | |
| git commit -m "CI ${{ github.run_number }}" | |
| git push origin remote |