Skip to content
This repository has been archived by the owner on Jan 3, 2023. It is now read-only.

Commit

Permalink
Added release step
Browse files Browse the repository at this point in the history
  • Loading branch information
dylanratcliffe committed Dec 21, 2021
1 parent e7e7a90 commit 97702b5
Show file tree
Hide file tree
Showing 2 changed files with 774 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/cross-compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ on:
push:
branches:
- main
tags:
- 'v*'
pull_request:
branches:
- main
Expand Down Expand Up @@ -219,3 +221,17 @@ jobs:
path: |
overmind-agent
overmind-agent.exe
release:
name: Release
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/')
needs:
- build
steps:
- name: Create Release
uses: ncipollo/release-action@v1
with:
artifacts: "*"
generateReleaseNotes: true
token: ${{ secrets.GITHUB_TOKEN }}
Loading

0 comments on commit 97702b5

Please sign in to comment.