{"id":15102136,"url":"https://github.com/endail/pioasm-action","last_synced_at":"2026-01-19T15:06:20.265Z","repository":{"id":104384620,"uuid":"601041817","full_name":"endail/pioasm-action","owner":"endail","description":"GitHub Action to assemble PIO files","archived":false,"fork":false,"pushed_at":"2023-02-15T12:24:12.000Z","size":42,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-10-30T03:13:01.474Z","etag":null,"topics":["pico","pio","pioasm","raspberry-pi-pico","rp2040","state-machine"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/endail.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-02-13T08:41:21.000Z","updated_at":"2023-03-02T13:22:37.000Z","dependencies_parsed_at":null,"dependency_job_id":"c72bec6a-26ae-4067-911f-b99c219d3345","html_url":"https://github.com/endail/pioasm-action","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/endail%2Fpioasm-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/endail%2Fpioasm-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/endail%2Fpioasm-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/endail%2Fpioasm-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/endail","download_url":"https://codeload.github.com/endail/pioasm-action/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246730309,"owners_count":20824399,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["pico","pio","pioasm","raspberry-pi-pico","rp2040","state-machine"],"created_at":"2024-09-25T18:47:30.396Z","updated_at":"2026-01-19T15:06:20.259Z","avatar_url":"https://github.com/endail.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# pioasm-action\n\nAssembles .pio files for use with RP2040 PIO.\n\nThis action uses the Raspberry Pi Pico C/C++ SDK's [`pioasm` assembler](https://github.com/raspberrypi/pico-sdk/tree/master/tools/pioasm) to assemble PIO files. See section 3.3 of the [SDK documentation](https://datasheets.raspberrypi.com/pico/raspberry-pi-pico-c-sdk.pdf) for more details about `pioasm`.\n\n## Inputs\n\n### `files`\n\n**Required**: Glob to select PIO files.\n\n**Default**: `src/*.pio`\n\n### `outdir`\n\n**Required**: Path to output directory. Assembled files are **not** committed. You should use another action such as [git-auto-commit-action](https://github.com/stefanzweifel/git-auto-commit-action) if you need to commit and push them. An example is given below.\n\n**Default**: `include`\n\n### `format`\n\n**Required**: pioasm output format. `c-sdk`, `python`, `hex`, or `ada`. The assembled file will have a `.h`, `.py`, `.hex`, or `.ada` extension respectively.\n\n**Default**: `c-sdk`\n\n## Example usage\n\n```yaml\nname: Assemble\n\non:\n  push:\n    paths:\n      - \"src\"\n\njobs:\n  assemble-pio-job:\n    runs-on: ubuntu-latest\n    permissions:\n      contents: write\n    name: Assemble\n    steps:\n\n      - name: Checkout\n        uses: actions/checkout@v3\n\n      - uses: endail/pioasm-action@v1\n        with:\n          files: src/*.pio\n          outdir: include\n          format: c-sdk\n\n      - uses: stefanzweifel/git-auto-commit-action@v4\n        with:\n          commit_message: Assemble .pio files\n          file_pattern: include/*.h\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fendail%2Fpioasm-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fendail%2Fpioasm-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fendail%2Fpioasm-action/lists"}