Skip to content

Release v0.5.2 (#130) #16

Release v0.5.2 (#130)

Release v0.5.2 (#130) #16

Workflow file for this run

on:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
name: "Stable Tag"
# Secrets:
# * CACHE_VERSION - Set to `date +%s`, set new when the cache should be busted
jobs:
release:
name: Create Release
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Create draft release
env:
GITHUB_TOKEN: ${{ github.token }}
run: |
gh release create \
--repo ${{ github.repository }} \
--title ${{ github.ref_name }} \
--notes '' \
--draft \
${{ github.ref_name }}
docs:
name: "Docs"
needs: ["release"]
uses: ./.github/workflows/part_docs.yml
with:
elixirVersion: "1.16.0"
otpVersion: "26.2"
releaseName: "${{ github.ref_name }}"
secrets:
CACHE_VERSION: "${{ secrets.CACHE_VERSION }}"