Skip to content

Commit

Permalink
release on github too
Browse files Browse the repository at this point in the history
  • Loading branch information
nhanb committed Jun 18, 2023
1 parent 32b030b commit 82aa4e7
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Go
on:
push:
tags:
- "v*.*.*"

permissions:
contents: write

jobs:

build:
runs-on: debian-latest
steps:
- uses: actions/checkout@v3

- uses: actions/setup-go@v3
with:
go-version: 1.20

- run: make dist/GORTS-Linux.zip

- run: make dist/GORTS-Windows.zip

- name: Release
uses: softprops/action-gh-release@v0.1.15
with:
files: |
dist/GORTS-Linux.zip
dist/GORTS-Windows.zip

0 comments on commit 82aa4e7

Please sign in to comment.