Skip to content

Commit

Permalink
new: release github action
Browse files Browse the repository at this point in the history
  • Loading branch information
averevki committed Apr 18, 2022
1 parent 41d93e9 commit 9d76574
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Release

# run on every commit tag like "v_._._" (e.g v2.1.5)
on:
push:
tags:
- "v*.*.*"
workflow_run:
workflows: [ "Build and deploy" ]
branches: [ main ]
types:
- completed

# Create GitHub Release with specified details from last commits
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: generate new release
- uses: marvinpinto/action-automatic-releases@latest
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
prerelease: false
files: |
LICENSE

0 comments on commit 9d76574

Please sign in to comment.