Skip to content

Commit

Permalink
Make a release automatically
Browse files Browse the repository at this point in the history
Signed-off-by: Peter Lemenkov <lemenkov@gmail.com>
  • Loading branch information
lemenkov committed Apr 19, 2024
1 parent 6da4d8e commit efa1b29
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/automatic_release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Make a release on every tag

on:
push:
tags:
- "*.*.*"

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Release
uses: softprops/action-gh-release@v2
1 change: 1 addition & 0 deletions erlang-find-requires.py
Original file line number Diff line number Diff line change
Expand Up @@ -246,6 +246,7 @@ def inspect_beam_file(ISA, filename):
#exit(1)

BeamModRequires = sort_and_uniq(Dict.keys())
print(BeamModRequires)

# let's find RPM-packets to which these modules belongs
# We return more than one match since there could be situations where the same
Expand Down

0 comments on commit efa1b29

Please sign in to comment.