Skip to content

chore: Move ielixir build to separate workflow #7

chore: Move ielixir build to separate workflow

chore: Move ielixir build to separate workflow #7

Workflow file for this run

name: IElixir Release
on:
push:
tags:
- 'v*'
jobs:
release:
name: Create a release
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
body: |
Changes in this release:
- ${{ github.event.head_commit.message }}
draft: true
prerelease: false