nerd-fonts/.github/workflows/release.yml

182 lines
5.7 KiB
YAML
Raw Normal View History

# triggers a release or a release candidate based on the version defined in package.json
name: Release
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [ master ]
paths-ignore:
- 'images/**'
- '**.md'
- '.all-contributorsrc'
- 'chocolatey/**'
- 'bin/scripts/lib/**'
- 'Dockerfile'
- 'install.ps1'
- 'install.sh'
- 'LICENSE'
- 'package**'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
2021-11-26 15:46:46 +01:00
setup-fonts-matrix:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
ref: master
fetch-depth: '1'
2021-11-26 15:46:46 +01:00
-
id: set-matrix
run: |
cd -- $GITHUB_WORKSPACE/bin/scripts/
fontNames=$(./get-font-names-from-json.sh)
2021-11-26 16:08:59 +01:00
echo "${fontNames}"
2021-11-26 15:46:46 +01:00
echo "::set-output name=matrix::${fontNames}"
2021-11-26 16:08:59 +01:00
echo ${{ steps.set-matrix.outputs.matrix }}
2021-11-26 15:46:46 +01:00
outputs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
# Workflow to build and install dependencies
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
2021-11-26 16:08:59 +01:00
needs: setup-fonts-matrix
env:
GITHUB_ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2021-11-26 15:46:46 +01:00
strategy:
matrix:
font: ${{fromJson(needs.setup-fonts-matrix.outputs.matrix)}}
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
with:
ref: master
fetch-depth: '1'
- name: Set release variables
run: |
cd -- "$GITHUB_WORKSPACE"
cat package.json
RELEASE_TAG_VERSION=$(cat package.json \
| grep version \
| head -1 \
| awk -F: '{ print $2 }' \
| sed 's/[",]//g')
echo "RELEASE_TAG_VERSION=$RELEASE_TAG_VERSION" >> $GITHUB_ENV
[[ "$RELEASE_TAG_VERSION" == *"-RC"* ]] && echo "RELEASE_CANDIDATE=true" || echo "RELEASE_CANDIDATE=false" >> $GITHUB_ENV
# Install and setup Dependencies
2021-11-26 15:46:46 +01:00
# @TODO cache the next 4 steps with actions/cache or upload
- name: Setup core dependencies
run: |
sudo apt update -y -q
sudo apt install software-properties-common -y -q
sudo apt update -y -q
sudo apt install fontforge -y -q
sudo apt install python3-fontforge -y -q
- name: Setup additional dependencies
run: |
pip install fonttools --quiet
- name: Build FreeType from source
run: |
wget http://downloads.sourceforge.net/project/freetype/freetype2/2.7/freetype-2.7.tar.gz --quiet
tar -zxf freetype-2.7.tar.gz
cd freetype-2.7
./configure
make --quiet
sudo make install --quiet
- name: Build Harfbuzz from source
run: |
wget http://www.freedesktop.org/software/harfbuzz/release/harfbuzz-1.3.4.tar.bz2 --quiet
tar -xjf harfbuzz-1.3.4.tar.bz2
cd harfbuzz-1.3.4
./configure
make --quiet
sudo make install --quiet
- name: Verify setup
run: |
fontforge --version
fontforge --version 2>&1 | grep libfontforge | awk '{print $NF}'
2021-12-31 17:11:51 +01:00
- name: Bump version for source files once
# @todo fixme - put in a separate job with the release env setup and output the release info
2021-12-31 17:11:51 +01:00
if: ${{ matrix.font == '3270' }}
run: |
cd -- "$GITHUB_WORKSPACE/bin/scripts"
./version-bump.sh "$RELEASE_TAG_VERSION"
2021-12-31 17:11:51 +01:00
- name: Standardize the readme files
run: |
cd -- "$GITHUB_WORKSPACE/bin/scripts"
2021-11-26 15:46:46 +01:00
./standardize-and-complete-readmes.sh "${{ matrix.font }}"
- name: Patch all the variations of the font family
run: |
cd -- "$GITHUB_WORKSPACE/bin/scripts"
fontforge --script ../../font-patcher --version
2021-11-26 15:46:46 +01:00
./gotta-patch-em-all-font-patcher\!.sh "${{ matrix.font }}"
- name: Generate fontconfig and casks
run: |
cd -- "$GITHUB_WORKSPACE/bin/scripts"
./generate-fontconfig.sh
2021-11-26 15:46:46 +01:00
./generate-casks.sh "${{ matrix.font }}"
# - uses: EndBug/add-and-commit@v7
# with:
# add: 'patched-fonts'
# message: Rebuilds patched fonts
# committer_name: GitHub Actions
# committer_email: 41898282+github-actions[bot]@users.noreply.github.com
- name: Archive font package zip files and upload for release
run: |
cd -- "$GITHUB_WORKSPACE/bin/scripts"
./archive-fonts.sh "${{ matrix.font }}"
GITHUB_TOKEN=$GITHUB_TOKEN PRERELEASE=$RELEASE_CANDIDATE ./upload-archives.sh $RELEASE_TAG_VERSION "${{ matrix.font }}"
- name: Upload patched fonts as artifacts
uses: actions/upload-artifact@v2
with:
name: patched-fonts
path: "$GITHUB_WORKSPACE/patched-fonts/*/${{ matrix.font }}"
commit:
name: Commit and push patched fonts to the repo
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Download patched fonts from build
uses: actions/download-artifact@v2
with:
name: patched-fonts
path: "$GITHUB_WORKSPACE/patched-fonts/"
- name: Display structure of downloaded files
run: ls -R
# uncommment once structure is correct
# - uses: EndBug/add-and-commit@v7
# with:
# add: 'patched-fonts'
# message: Rebuilds patched fonts
# committer_name: GitHub Actions
# committer_email: 41898282+github-actions[bot]@users.noreply.github.com