Skip to content

Commit

Permalink
Merge pull request kosmos-io#52 from wuyingjun-lucky/main
Browse files Browse the repository at this point in the history
Add workflow pipeline for release
  • Loading branch information
kosmos-robot authored Sep 19, 2023
2 parents 70d2867 + e867f9e commit 83f78d5
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
## Workflow's name
#name: release kosmosctl for linux&darwin
#
## Workflow's trigger
on:
push:
tags:
- "v*.*.*"

# Workflow's jobs
jobs:
# job's id
release:
# job's name
name: release kosmosctl for linux&darwin

# allow to upload release binary
permissions: write-all

# the type of machine to run the job on
runs-on: ubuntu-20.04

# create steps
steps:
# step1: check out repository
- name: Check out git repository
uses: actions/checkout@v3

# step2: install go env
- name: Install Go
uses: actions/setup-go@v3

# step3: make binaries
- name: Make binaries
run: make release

# step4: create release
- name: release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
_output/release/kosmosctl-linux-amd64
_output/release/kosmosctl-linux-arm64
_output/release/kosmosctl-darwin-amd64
_output/release/kosmosctl-darwin-arm64

0 comments on commit 83f78d5

Please sign in to comment.