File: hexpm-release.yml

package info (click to toggle)
erlang-p1-pgsql 1.1.38-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 224 kB
  • sloc: erlang: 1,283; makefile: 17
file content (50 lines) | stat: -rw-r--r-- 1,254 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
name: Hex

on:
  push:
    tags:
      - '*'

jobs:
  release:
    runs-on: ubuntu-24.04
    steps:

      - name: Check out
        uses: actions/checkout@v4

      - name: Get Erlang/OTP
        uses: erlef/setup-beam@v1
        with:
          otp-version: 26
          rebar3-version: '3.24.0'

      - name: Setup rebar3 hex
        run: |
          mkdir -p ~/.config/rebar3/
          echo "{plugins, [rebar3_hex]}." > ~/.config/rebar3/rebar.config

      - run: rebar3 edoc

      - name: Prepare Markdown
        run: |
          echo "" >>README.md
          echo "## EDoc documentation" >>README.md
          echo "" >>README.md
          echo "You can check this library's " >>README.md
          echo "[EDoc documentation](edoc.html), " >>README.md
          echo "generated automatically from the source code comments." >>README.md

      - name: Convert Markdown to HTML
        uses: natescherer/markdown-to-html-with-github-style-action@v1.1.0
        with:
          path: README.md

      - run: |
          mv doc/index.html doc/edoc.html
          mv README.html doc/index.html

      - name: Publish to hex.pm
        run: DEBUG=1 rebar3 hex publish --repo hexpm --yes
        env:
          HEX_API_KEY: ${{ secrets.HEX_API_KEY }}