release: 1.0.0-rc2 (#11) #2
Workflow file for this run
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
on: | |
workflow_dispatch: | |
push: | |
tags: | |
- '*' | |
name: Release Elixir SDK | |
jobs: | |
release-sdks: | |
name: release-elixir | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Elixir Host SDK | |
uses: erlef/setup-beam@v1 | |
with: | |
experimental-otp: true | |
otp-version: '25.0.4' | |
elixir-version: '1.14.0' | |
- name: Publish Elixir Host SDK to hex.pm | |
env: | |
HEX_API_KEY: ${{ secrets.HEX_PM_API_TOKEN }} | |
run: | | |
make publish | |