Update FONTLOG #12
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 Sudo | |
on: | |
push: | |
tags: | |
- "v*.*" | |
- "v*.*.*" | |
jobs: | |
Release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install WOFF Support | |
run: sudo apt install -y woff2 woff-tools | |
- name: Build | |
run: make sudo dist/sudo.zip | |
- name: Generate Changelog | |
run: sed -n '/${{github.ref_name}}/,/^$/p' sudo/FONTLOG.txt | sed '1d; $d' > Release_Notes.txt | |
- name: Release | |
uses: softprops/[email protected] | |
with: | |
body_path: Release_Notes.txt | |
files: dist/sudo.zip |