Add information on Program Segments for PPC EABI programs #22
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 Decompilation Guide | |
| on: push | |
| permissions: | |
| contents: write | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Typst | |
| uses: lvignoli/typst-action@main | |
| with: | |
| source_file: src/main.typ | |
| - name: Upload PDF file | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: PDF | |
| path: src/main.pdf | |
| - name: Release | |
| uses: softprops/action-gh-release@v1 | |
| if: github.ref_type == 'tag' | |
| with: | |
| name: "${{ github.ref_name }} — ${{ env.DATE }}" | |
| files: src/main.pdf |