Skip to content

Commit

Permalink
Skeleton of release workflow (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
philrz authored Feb 22, 2023
1 parent 3550262 commit 3186cd4
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 3186cd4

Please sign in to comment.