From 3186cd433eb1c23ccac24ed528692831aea06b80 Mon Sep 17 00:00:00 2001 From: Phil Rzewski Date: Wed, 22 Feb 2023 12:05:11 -0800 Subject: [PATCH] Skeleton of release workflow (#4) --- .github/workflows/release.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..26a33a9 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,22 @@ +name: release assets + +on: + workflow_dispatch: + push: + branches: + - "release/**" + +jobs: + release: + runs-on: ubuntu-20.04 + steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: Assemble artifacts + run: | + for platform in darwin linux windows; do + for arch in amd arm; do + echo $platform $arch + done + done