Skip to content

standardize with other images #2

standardize with other images

standardize with other images #2

Workflow file for this run

name: create release notes
on:
push:
tags:
- "*"
- "!*unraid"
permissions:
contents: write
jobs:
release:
name: release
runs-on: ubuntu-latest
steps:
- name: create release notes
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ github.ref_name }}
run: |
gh release create "$tag" \
--repo="$GITHUB_REPOSITORY" \
--title="${tag#v}" \
--generate-notes