Skip to content

Commit

Permalink
Fix package name in release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jwilger committed Oct 8, 2024
1 parent 3d8b5d6 commit 321fb6c
Showing 1 changed file with 34 additions and 36 deletions.
70 changes: 34 additions & 36 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,45 +2,43 @@ name: Publish Package
on:
release:
types: [published]

env:
OPENAI_API_KEY: afakekeyneededfortests

jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Elixir
uses: erlef/setup-beam@61e01a43a562a89bfc54c7f9a378ff67b03e4a21 # v1.16.0
with:
elixir-version: '1.16.0' # [Required] Define the Elixir version
otp-version: '26.2' # [Required] Define the Erlang/OTP version
- name: Restore dependencies cache
uses: actions/cache@v3
with:
path: deps
key: ${{ runner.os }}-mix-${{ hashFiles('**/mix.lock') }}
restore-keys: ${{ runner.os }}-mix-
- name: Restore _build cache
uses: actions/cache@v3
with:
path: _build
key: ${{ runner.os }}-build-${{ hashFiles('**/*.ex') }}
restore-keys: ${{ runner.os }}-build-
- name: Install dependencies
run: mix deps.get
- name: Check version
run: |
MIX_VERSION=$(grep 'version:' mix.exs | cut -d '"' -f2)
TAG_VERSION=${GITHUB_REF/refs\/tags\/v/}
if [ "$MIX_VERSION" != "$TAG_VERSION" ]; then
echo "Tag version ($TAG_VERSION) does not match mix.exs version ($MIX_VERSION)"
exit 1
fi
- name: Publish to Hex
uses: synchronal/hex-publish-action@v3
with:
name: gpt_agent
key: ${{ secrets.HEX_API_KEY }}
tag-release: false
- uses: actions/checkout@v3
- name: Set up Elixir
uses: erlef/setup-beam@61e01a43a562a89bfc54c7f9a378ff67b03e4a21 # v1.16.0
with:
elixir-version: '1.16.0' # [Required] Define the Elixir version
otp-version: '26.2' # [Required] Define the Erlang/OTP version
- name: Restore dependencies cache
uses: actions/cache@v3
with:
path: deps
key: ${{ runner.os }}-mix-${{ hashFiles('**/mix.lock') }}
restore-keys: ${{ runner.os }}-mix-
- name: Restore _build cache
uses: actions/cache@v3
with:
path: _build
key: ${{ runner.os }}-build-${{ hashFiles('**/*.ex') }}
restore-keys: ${{ runner.os }}-build-
- name: Install dependencies
run: mix deps.get
- name: Check version
run: |
MIX_VERSION=$(grep 'version:' mix.exs | cut -d '"' -f2)
TAG_VERSION=${GITHUB_REF/refs\/tags\/v/}
if [ "$MIX_VERSION" != "$TAG_VERSION" ]; then
echo "Tag version ($TAG_VERSION) does not match mix.exs version ($MIX_VERSION)"
exit 1
fi
- name: Publish to Hex
uses: synchronal/hex-publish-action@v3
with:
name: open_ai_client
key: ${{ secrets.HEX_API_KEY }}
tag-release: false

0 comments on commit 321fb6c

Please sign in to comment.