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(main): release 1.0.0 #7

Merged
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 @@
{
".": "0.1.2"
".": "1.0.0"
}
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Changelog

## [1.0.0](https://github.com/stordco/actions-elixir/compare/v0.1.2...v1.0.0) (2022-09-09)


### ⚠ BREAKING CHANGES

* use hyphens over underscores for inputs and outputs
* add support for private hex repository (#6)

### Features

* add support for private hex repository ([#6](https://github.com/stordco/actions-elixir/issues/6)) ([f6dd6ac](https://github.com/stordco/actions-elixir/commit/f6dd6ac2f3e602c9c0ec6450618a8b34ceaa43d8))
* setup release automation and proper git tags ([#5](https://github.com/stordco/actions-elixir/issues/5)) ([8d1a20a](https://github.com/stordco/actions-elixir/commit/8d1a20a8eeb06e55b0a84d4604852ceed7a62773))
* use job name as cache title by default ([5d52701](https://github.com/stordco/actions-elixir/commit/5d52701675c3719907ed5bfb9053ce6de605e320))


### Bug Fixes

* unset optional input values ([b5344fd](https://github.com/stordco/actions-elixir/commit/b5344fd8745eb37f7c04f5cfc164eb14ea0d04af))
* update release-please manifest version ([#8](https://github.com/stordco/actions-elixir/issues/8)) ([e57f320](https://github.com/stordco/actions-elixir/commit/e57f3205c005fd66960bce056f4c2c1d9afb5e63))
* use .tool-versions erlang version not otp ([a046ca0](https://github.com/stordco/actions-elixir/commit/a046ca0cf60d62f5fc553f75fdea89a17851b072))


### Miscellaneous Chores

* use hyphens over underscores for inputs and outputs ([11bdcef](https://github.com/stordco/actions-elixir/commit/11bdcef44b9f2858390eb9cb961bf472d54e45d8))
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,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@v0.1.2
uses: stordco/actions-elixir/setup@v1.0.0
```
<!-- {x-release-please-end} -->

Expand All @@ -22,7 +22,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@v0.1.2
uses: stordco/actions-elixir/setup@v1.0.0
with:
github-token: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }}
hex-token: ${{ secrets.HEX_API_KEY }}
Expand All @@ -34,7 +34,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@v0.1.2
uses: stordco/actions-elixir/setup@v1.0.0
with:
elixir-version: "1.14"
otp-version: "25.0"
Expand All @@ -46,7 +46,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@v0.1.2
uses: stordco/actions-elixir/setup@v1.0.0
with:
cache-version: v2
```
Expand Down