Skip to content

Commit 209b463

Browse files
committed
chore: fix action name
1 parent 765bbb3 commit 209b463

File tree

2 files changed

+26
-28
lines changed

2 files changed

+26
-28
lines changed

.github/workflows/publish-docs.yml

+24-26
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@ name: Hex Publish Docs
22

33
on:
44
workflow_dispatch:
5-
branches:
6-
- master
75

86
concurrency:
97
group: hex-publish-docs
@@ -14,27 +12,27 @@ jobs:
1412
name: Publish
1513
runs-on: ubuntu-latest
1614
steps:
17-
- name: Verify Branch
18-
if: github.ref != 'refs/heads/master'
19-
run: exit 1
20-
- uses: actions/checkout@v4
21-
- name: Set up Elixir
22-
uses: erlef/setup-beam@v1
23-
with:
24-
elixir-version: '1.17'
25-
otp-version: '27.1'
26-
- name: Restore dependencies cache
27-
uses: actions/cache@v4
28-
with:
29-
path: deps
30-
key: ${{ runner.os }}-mix-${{ hashFiles('**/mix.lock') }}
31-
restore-keys: ${{ runner.os }}-mix-
32-
- name: Install dependencies
33-
run: |
34-
mix local.rebar --force
35-
mix local.hex --force
36-
mix deps.get
37-
- name: Run Hex Publish Docs
38-
run: mix hex.publish docs --yes
39-
env:
40-
HEX_API_KEY: ${{ secrets.HEX_API_KEY }}
15+
- name: Verify Branch
16+
if: github.ref != 'refs/heads/master'
17+
run: exit 1
18+
- uses: actions/checkout@v4
19+
- name: Set up Elixir
20+
uses: erlef/setup-beam@v1
21+
with:
22+
elixir-version: "1.17"
23+
otp-version: "27.1"
24+
- name: Restore dependencies cache
25+
uses: actions/cache@v4
26+
with:
27+
path: deps
28+
key: ${{ runner.os }}-mix-${{ hashFiles('**/mix.lock') }}
29+
restore-keys: ${{ runner.os }}-mix-
30+
- name: Install dependencies
31+
run: |
32+
mix local.rebar --force
33+
mix local.hex --force
34+
mix deps.get
35+
- name: Run Hex Publish Docs
36+
run: mix hex.publish docs --yes
37+
env:
38+
HEX_API_KEY: ${{ secrets.HEX_API_KEY }}

.github/workflows/release-please.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616
steps:
1717
- id: release
1818
name: Release
19-
uses: google-github-actions/[email protected]
19+
uses: googleapis/[email protected]
2020
with:
21-
command: manifest
2221
config-file: .github/release-please-config.json
2322
manifest-file: .github/release-please-manifest.json
2423
release-type: elixir
24+
target-branch: master
2525
token: ${{ secrets.GH_PAT_RELEASE_PLEASE_ACTION }}

0 commit comments

Comments
 (0)