mirror of
https://github.com/Open-Argon/argon-v3.git
synced 2025-12-06 00:46:07 +00:00
24 lines
542 B
YAML
24 lines
542 B
YAML
# workflow name
|
|
name: Generate release-artifacts
|
|
|
|
on:
|
|
release:
|
|
types:
|
|
- created
|
|
|
|
# workflow tasks
|
|
jobs:
|
|
generate:
|
|
name: Generate cross-platform builds
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout the repository
|
|
uses: actions/checkout@v2
|
|
- name: Generate build files
|
|
uses: thatisuday/go-cross-build@v1
|
|
with:
|
|
platforms: 'linux/amd64, darwin/amd64, windows/amd64'
|
|
package: 'src'
|
|
name: 'argon'
|
|
compress: 'true'
|
|
dest: 'bin' |