From 3f2c7d8f5bf71c05e57e9a5c736f0d6556b2feb0 Mon Sep 17 00:00:00 2001 From: William Bell Date: Tue, 8 Aug 2023 23:00:33 +0100 Subject: [PATCH] try new release --- .github/workflows/package_release.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/package_release.yml diff --git a/.github/workflows/package_release.yml b/.github/workflows/package_release.yml new file mode 100644 index 0000000..14a51dd --- /dev/null +++ b/.github/workflows/package_release.yml @@ -0,0 +1,25 @@ +# workflow name +name: Generate release-artifacts + +# on events +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' \ No newline at end of file