Skip to content

Commit

Permalink
add github action
Browse files Browse the repository at this point in the history
  • Loading branch information
Wsine committed May 26, 2022
1 parent 106bf94 commit 96474be
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/packup.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: packup

on:
workflow_dispatch:

jobs:
packup:
runs-on: ubuntu-latest
steps:
- name: Checkout the code
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.17
- name: Build
run: make
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: feishu2md-amd64
path: ./bin/*/*

0 comments on commit 96474be

Please sign in to comment.