Monthly release/tag #19
This file contains 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: Monthly release/tag | |
on: | |
schedule: | |
- cron: '0 0 1 * *' | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout branch | |
uses: actions/checkout@v2 | |
- name: Generate release tag | |
id: generate_release_tag | |
uses: amitsingh-007/[email protected] | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
tag_prefix: 'noto-monthly-release-' | |
- name: Create Release | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ steps.generate_release_tag.outputs.release_tag }} | |
release_name: Noto Monthly Release ${{ steps.generate_release_tag.outputs.release_tag }} | |
body: Monthly Noto release for downstream distributions |