-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🤖 I have created a release *beep* *boop* --- <details><summary>1.5.1</summary> ## [1.5.1](v1.5.0...v1.5.1) (2024-08-22) ### Bug Fixes * remove cache restore key causing incorrect restore files ([#46](#46)) ([0590eca](0590eca)) </details> --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
- Loading branch information
1 parent
0590eca
commit 694a5c6
Showing
4 changed files
with
16 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
".": "1.5.0" | ||
".": "1.5.1" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,7 @@ Once you have those set up, you can drop this action in. For simple usage, you s | |
<!-- {x-release-please-start-version} --> | ||
```yaml | ||
- name: Build Docker | ||
uses: stordco/actions-elixir/[email protected].0 | ||
uses: stordco/actions-elixir/[email protected].1 | ||
``` | ||
<!-- {x-release-please-end} --> | ||
|
@@ -22,7 +22,7 @@ Most of the time when you build a docker image, you'll want to push it as well. | |
<!-- {x-release-please-start-version} --> | ||
```yaml | ||
- name: Build Docker | ||
uses: stordco/actions-elixir/[email protected].0 | ||
uses: stordco/actions-elixir/[email protected].1 | ||
with: | ||
push: true | ||
``` | ||
|
@@ -33,7 +33,7 @@ If you want to change the default image, or even add multiple, you can do so wit | |
<!-- {x-release-please-start-version} --> | ||
```yaml | ||
- name: Build Docker | ||
uses: stordco/actions-elixir/[email protected].0 | ||
uses: stordco/actions-elixir/[email protected].1 | ||
with: | ||
images: | | ||
ghcr.io/custom-owner/custom-repo | ||
|
@@ -46,7 +46,7 @@ Lastly, you'll probably want to install some dependencies from our GitHub organi | |
<!-- {x-release-please-start-version} --> | ||
```yaml | ||
- name: Build Docker | ||
uses: stordco/actions-elixir/[email protected].0 | ||
uses: stordco/actions-elixir/[email protected].1 | ||
with: | ||
github-token: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }} | ||
hex-token: ${{ secrets.HEX_API_KEY }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ For basic usage, you don't have to specify anything! Just drop this file in your | |
<!-- {x-release-please-start-version} --> | ||
```yaml | ||
- name: Setup Elixir | ||
uses: stordco/actions-elixir/[email protected].0 | ||
uses: stordco/actions-elixir/[email protected].1 | ||
``` | ||
<!-- {x-release-please-end} --> | ||
|
@@ -18,7 +18,7 @@ But some times it's not that simple. If you are using a private package from Git | |
<!-- {x-release-please-start-version} --> | ||
```yaml | ||
- name: Setup Elixir | ||
uses: stordco/actions-elixir/[email protected].0 | ||
uses: stordco/actions-elixir/[email protected].1 | ||
with: | ||
github-token: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }} | ||
hex-token: ${{ secrets.HEX_API_KEY }} | ||
|
@@ -30,7 +30,7 @@ If you are not using [`asdf`](https://asdf-vm.com/) (which you really should be) | |
<!-- {x-release-please-start-version} --> | ||
```yaml | ||
- name: Setup Elixir | ||
uses: stordco/actions-elixir/[email protected].0 | ||
uses: stordco/actions-elixir/[email protected].1 | ||
with: | ||
elixir-version: "1.14" | ||
otp-version: "25.0" | ||
|
@@ -42,7 +42,7 @@ Lastly, if things go wrong and your cache is breaking builds, you can manually i | |
<!-- {x-release-please-start-version} --> | ||
```yaml | ||
- name: Setup Elixir | ||
uses: stordco/actions-elixir/[email protected].0 | ||
uses: stordco/actions-elixir/[email protected].1 | ||
with: | ||
cache-version: v2 | ||
``` | ||
|