Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: release main #41

Merged
merged 1 commit into from
Feb 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "1.4.0"
".": "1.4.1"
}
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [1.4.1](https://github.com/stordco/actions-elixir/compare/v1.4.0...v1.4.1) (2024-02-20)


### Bug Fixes

* add shell to dep clean ([ceef4c5](https://github.com/stordco/actions-elixir/commit/ceef4c5e8c53601e7665de9ab95ac230010af967))

## [1.4.0](https://github.com/stordco/actions-elixir/compare/v1.3.0...v1.4.0) (2024-02-20)


Expand Down
8 changes: 4 additions & 4 deletions docker-build/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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} -->

Expand All @@ -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
```
Expand All @@ -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
Expand All @@ -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 }}
Expand Down
8 changes: 4 additions & 4 deletions setup/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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} -->

Expand All @@ -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 }}
Expand All @@ -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"
Expand All @@ -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
```
Expand Down
Loading