We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1acf6d commit d9ca42cCopy full SHA for d9ca42c
.github/workflows/hexpm-release.yml
@@ -7,17 +7,24 @@ on:
7
8
jobs:
9
release:
10
- runs-on: ubuntu-20.04
+ runs-on: ubuntu-24.04
11
steps:
12
+
13
- name: Check out
- uses: actions/checkout@v2
14
+ uses: actions/checkout@v4
15
16
+ - name: Get Erlang/OTP
17
+ uses: erlef/setup-beam@v1
18
+ with:
19
+ otp-version: 27
20
+ rebar3-version: '3.24.0'
21
22
- name: Setup rebar3 hex
23
run: |
24
mkdir -p ~/.config/rebar3/
25
echo "{plugins, [rebar3_hex]}." > ~/.config/rebar3/rebar.config
26
27
- name: Publish to hex.pm
- run: rebar3 hex publish --repo hexpm --yes || head rebar3.crashdump
28
+ run: DEBUG=1 rebar3 hex publish --repo hexpm --yes
29
env:
30
HEX_API_KEY: ${{ secrets.HEX_API_KEY }}
0 commit comments