Skip to content

Update release diff link #3

Update release diff link

Update release diff link #3

Workflow file for this run

name: Release General
on:
push:
tags:
- 'v*'
jobs:
release:
name: Build and upload release tarball
if: startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: |
make
- name: Build release
run: |
make dist
ls -lF ../
mkdir -p artifacts/
mv ../*.tar.* artifacts/
- name: Extract ChangeLog entry ...
run: |
awk '/-----*/{if (x == 1) exit; x=1;next}x' ChangeLog.md \
|head -n -1 > release.md
cat release.md
- uses: ncipollo/release-action@v1
with:
name: mtools ${{ github.ref_name }}
bodyFile: "release.md"
artifacts: "artifacts/*"