This guide will help you get started with the snider/build@v3 action.
The simplest way to use this action is to let it auto-detect your project type.
steps:
- uses: actions/checkout@v4
- uses: snider/build@v3
with:
build-name: myApp
build-platform: linux/amd64This configuration will:
- Detect your project stack (e.g., Wails v2).
- Set up the necessary environment (Go, Node.js, etc.).
- Build your application.
- Package the artifacts.
- Upload artifacts (and publish release on tags).
If you only want to verify the build without uploading artifacts:
- uses: snider/build@v3
with:
build-name: myApp
build-platform: linux/amd64
package: false- uses: snider/build@v3
with:
build-name: myApp
build-platform: darwin/universal- uses: snider/build@v3
with:
build-name: myApp
build-platform: windows/amd64- Check Configuration for more advanced options.
- Read about Stacks for specific stack details.