diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..85a17d5 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,22 @@ +jobs: + build: + name: Build + runs-on: ubuntu-latest + permissions: + contents: read + + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Build + id: build + uses: samyarsadat/Pico-Build-Action@v1 + with: + source_dir: "" + + - name: Upload Build Artifacts + uses: actions/upload-artifact@v4 + with: + name: workspace_artifacts + path: ${{steps.build.outputs.output_dir}}