Skip to content

Commit

Permalink
chore(main): release 1.1.0 (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
stord-engineering-account authored Sep 14, 2022
1 parent d9df027 commit bd357bf
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 9 deletions.
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.0.2"
".": "1.1.0"
}
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

## [1.1.0](https://github.com/stordco/actions-elixir/compare/v1.0.2...v1.1.0) (2022-09-14)


### Features

* create a docker-build action ([#13](https://github.com/stordco/actions-elixir/issues/13)) ([d9dcad7](https://github.com/stordco/actions-elixir/commit/d9dcad7717fc32542aeaf29a5cc89d6144656514))


### Bug Fixes

* update release to update new README files ([#15](https://github.com/stordco/actions-elixir/issues/15)) ([d9df027](https://github.com/stordco/actions-elixir/commit/d9df027b6716010866c354566be0b7ea7452f773))

## [1.0.2](https://github.com/stordco/actions-elixir/compare/v1.0.1...v1.0.2) (2022-09-09)


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/docker-build@v1.0.2
uses: stordco/actions-elixir/docker-build@v1.1.0
```
<!-- {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/docker-build@v1.0.2
uses: stordco/actions-elixir/docker-build@v1.1.0
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/docker-build@v1.0.2
uses: stordco/actions-elixir/docker-build@v1.1.0
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/docker-build@v1.0.2
uses: stordco/actions-elixir/docker-build@v1.1.0
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/setup@v1.0.2
uses: stordco/actions-elixir/setup@v1.1.0
```
<!-- {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/setup@v1.0.2
uses: stordco/actions-elixir/setup@v1.1.0
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/setup@v1.0.2
uses: stordco/actions-elixir/setup@v1.1.0
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/setup@v1.0.2
uses: stordco/actions-elixir/setup@v1.1.0
with:
cache-version: v2
```
Expand Down

0 comments on commit bd357bf

Please sign in to comment.