Skip to content

Commit 84b3605

Browse files
authored
Add release action
1 parent 98d9310 commit 84b3605

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/release.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# This is a basic workflow to help you get started with Actions
2+
3+
on:
4+
release:
5+
types: [created]
6+
7+
jobs:
8+
release-linux-amd64:
9+
name: release linux/amd64
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v2
13+
- uses: wangyoucao577/[email protected]
14+
with:
15+
github_token: ${{ secrets.GITHUB_TOKEN }}
16+
goos: linux
17+
goarch: amd64
18+
project_path: ./cmd/llsh

0 commit comments

Comments
 (0)