Skip to content

Commit

Permalink
Merge pull request #13 from lemenkov/make_a_release
Browse files Browse the repository at this point in the history
Make a release
  • Loading branch information
lemenkov authored Apr 19, 2024
2 parents 06c171d + efa1b29 commit ea955ae
Show file tree
Hide file tree
Showing 2 changed files with 21 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
6 changes: 6 additions & 0 deletions erlang-find-requires.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@
ERLLIBDIR = ""
ERLSHRDIR = "/usr/share/erlang/lib"

##
## Note $BUILDROOT/erts/emulator/*/erl_bif_list.h is autogenerated using
## erts/emulator/utils/make_tables script.
##

# See $BUILDROOT/erts/emulator/*/erl_bif_list.h
# erlang:F/A
ErtsBIFProvides = [
Expand Down Expand Up @@ -241,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 ea955ae

Please sign in to comment.