1.698.30 #45
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
name: Release | |
on: | |
release: | |
types: [ published ] | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 🛎 Checkout | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 # [!] we need to checkout with tags and commit history | |
- name: 📋 Get Commits since last Release | |
id: changes | |
uses: simbo/changes-since-last-release-action@v1 | |
- name: 📣 Output collected Data | |
run: | | |
echo "Changes since ${{ steps.changes.outputs.last-tag }}:" | |
echo "${{ steps.changes.outputs.log }}" | |
- name: 📝Edit Release | |
uses: irongut/[email protected] | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
id: ${{ github.event.release.id }} | |
body: | | |
Changes since ```${{ steps.changes.outputs.last-tag }}``` | |
${{ steps.changes.outputs.log }} |