Skip to content
Open
Changes from 4 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
9 changes: 7 additions & 2 deletions .github/workflows/release-hex.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,13 @@ on:
type: string
required: false
default: test
package-dir:
type: string
required: false
default: "./" # Directory containing the package. Useful for umbrella projects
secrets:
HEX_ORGANIZATION_COINGAMING_KEY:
required: true

defaults:
run:
shell: bash
Expand Down Expand Up @@ -70,4 +73,6 @@ jobs:
run: npm install semantic-release @semantic-release/git @semantic-release/exec @semantic-release/changelog @heathmont/semantic-release-elixir-hex

- name: Semantic Release
run: npx semantic-release --extends @heathmont/semantic-release-elixir-hex
run:
cd ${{ inputs.package-dir }} \
npx semantic-release --extends @heathmont/semantic-release-elixir-hex
Comment thread
gfrancischelli marked this conversation as resolved.
Outdated