Merge pull request #17 from internet-development/@jimmylee/0.0.6 #3
Workflow file for this run
This file contains hidden or 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 a new GitHub release with the files | |
| on: | |
| push: | |
| tags: ['*'] | |
| workflow_dispatch: | |
| jobs: | |
| release: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| repository-projects: write | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Create a ZIP archive from the fonts directory | |
| run: zip -r fonts.zip fonts | |
| - name: Create new release and upload fonts.zip | |
| uses: ncipollo/release-action@v1 | |
| with: | |
| artifacts: 'fonts.zip' | |
| generateReleaseNotes: true |