Skip to content

docs(changelog): Note year in previous changelog entry #316

docs(changelog): Note year in previous changelog entry

docs(changelog): Note year in previous changelog entry #316

Workflow file for this run

name: Fontship
on: [push, pull_request]
jobs:
fontship:
name: Fontship
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Fetch tags
run: |
git fetch --prune --tags ||:
- name: Fontship make
id: fontship
uses: docker://theleagueof/fontship:latest
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: ${{ steps.fontship.outputs.DISTDIR }}
path: ${{ steps.fontship.outputs.DISTDIR }}.zip
- name: Release
if: startsWith(github.ref, 'refs/tags/v')
uses: softprops/action-gh-release@v1
with:
files: |
${{ steps.fontship.outputs.DISTDIR }}.zip
${{ steps.fontship.outputs.DISTDIR }}.tar.xz
env:
GITHUB_TOKEN: ${{ github.token }}