TypeTogether / Playwrite

Sensei primary repository.
SIL Open Font License 1.1
85 stars 3 forks source link

Release triggered by tags instead of release #68

Closed vv-monsalve closed 4 weeks ago

vv-monsalve commented 1 month ago

@simoncozens this PR changes the release condition to be triggered by the tags instead. Please let me know if this would be enough or if something else would be needed here :)

simoncozens commented 1 month ago

It would also need to create the release. From the googlefonts-project-template:

      - name: Check for release
        id: create_release
        run: |
          if ! gh release view ${{ github.ref_name }}; then
          git show -s --format=%B ${{ github.ref_name }} | tail -n +4 | gh release create ${{ github.ref_name }} -t ${{ github.ref_name }} -F -
          fi
vv-monsalve commented 1 month ago

Updated!

vv-monsalve commented 4 weeks ago

Ty!