Fix #314 - Document the register profiles #80
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: Create documents with make | |
on: | |
push: | |
branches: | |
- '*' | |
jobs: | |
build: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
sudo apt-get --assume-yes update | |
sudo apt-get --assume-yes install pandoc texlive-xetex | |
- name: Build ebooks | |
run: make | |
- name: Pub | |
uses: actions/upload-artifact@v4 | |
with: | |
name: r2book | |
path: r2book.* | |
# Release creation | |
check_release: | |
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }} | |
outputs: | |
is_release: ${{ steps.release.outputs.is }} | |
tag_name: ${{ steps.release.outputs.tag }} | |
needs: | |
- build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # Download all git history and tags | |
- name: Check if is a release | |
run: | | |
TAG="`git describe --exact-match --tags ${{ github.sha }} || true`" | |
if [ -n "$TAG" ]; then | |
echo "tag=$TAG" >> $GITHUB_OUTPUT | |
echo "is=yes" >> $GITHUB_OUTPUT | |
else | |
echo "is=no" >> $GITHUB_OUTPUT | |
fi | |
id: release | |
release: | |
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' && needs.check_release.outputs.is_release == 'yes' }} | |
needs: | |
- check_release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # Download all git history and tags | |
- name: Download artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
name: r2book | |
- name: Create GitHub release | |
id: create_release | |
uses: softprops/action-gh-release@v2 | |
with: | |
tag_name: ${{ needs.check_release.outputs.tag_name }} | |
draft: false | |
prerelease: false | |
generate_release_notes: true | |
files: r2book.* |