Commit 0acf1f1 1 parent b017c92 commit 0acf1f1 Copy full SHA for 0acf1f1
File tree 2 files changed +26
-1
lines changed
2 files changed +26
-1
lines changed Original file line number Diff line number Diff line change
1
+ name : Release
2
+
3
+ on :
4
+ push :
5
+ tags :
6
+ - ' *'
7
+
8
+ jobs :
9
+ publish :
10
+ name : Publish to Hex.pm
11
+ runs-on : ubuntu-latest
12
+ steps :
13
+ - name : Checkout
14
+ uses : actions/checkout@v3
15
+
16
+ - name : Setup BEAM
17
+ uses : erlef/setup-beam@v1
18
+ with :
19
+ elixir-version : " 1.14.x"
20
+ otp-version : " 25.x"
21
+
22
+ - name : Publish Package
23
+ run : |
24
+ mix deps.get
25
+ HEX_API_KEY=${{secrets.HEX_API_KEY}} mix hex.publish --yes --replace
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ defmodule UeberauthApple.Mixfile do
52
52
end
53
53
54
54
defp description do
55
- "An Uberauth strategy for Apple authentication."
55
+ "An Ueberauth strategy for Apple authentication."
56
56
end
57
57
58
58
defp elixirc_paths ( :test ) , do: [ "lib" , "test/support" ]
You can’t perform that action at this time.
0 commit comments