From efa1b29865387574e3aca00d49b41c3633983464 Mon Sep 17 00:00:00 2001 From: Peter Lemenkov Date: Fri, 19 Apr 2024 14:05:15 +0200 Subject: [PATCH] Make a release automatically Signed-off-by: Peter Lemenkov --- .github/workflows/automatic_release.yml | 15 +++++++++++++++ erlang-find-requires.py | 1 + 2 files changed, 16 insertions(+) create mode 100644 .github/workflows/automatic_release.yml diff --git a/.github/workflows/automatic_release.yml b/.github/workflows/automatic_release.yml new file mode 100644 index 0000000..b7c8194 --- /dev/null +++ b/.github/workflows/automatic_release.yml @@ -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 diff --git a/erlang-find-requires.py b/erlang-find-requires.py index 2b1ffd4..fa5caa1 100755 --- a/erlang-find-requires.py +++ b/erlang-find-requires.py @@ -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