Skip to content

Update README.md

Update README.md #33

Workflow file for this run

name: Release Extension
on:
push:
branches: [main]
tags: ["v*.*.*"]
pull_request:
branches: [main]
permissions:
contents: write
jobs:
deploy:
# only run if the commit is tagged...
if: startsWith(github.ref, 'refs/tags/v')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
submodules: 'recursive'
- name: Zip
run: |
zip -r - "${GITHUB_WORKSPACE}/Transmutor.roboFontExt" > "${GITHUB_WORKSPACE}/Transmutor.roboFontExt.zip"
- name: Release
uses: softprops/action-gh-release@v1
with:
generate_release_notes: true
files: |
*.zip