Merge pull request #63 from eggplants/main #9
Workflow file for this run
This file contains 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: release | |
on: | |
push: | |
tags: | |
- "v*" | |
permissions: | |
contents: write | |
id-token: write | |
attestations: write | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: cli/gh-extension-precompile@561b19deda1228a0edf856c3325df87416f8c9bd # v2.0.0 | |
with: | |
release_android: true | |
# For more information see: https://developer.android.com/tools/releases/platforms | |
# At the time of writing, 35 had just come out of beta and 34 seems to be the most stable. | |
android_sdk_version: 34 | |
generate_attestations: true | |
go_version_file: go.mod |