| 12345678910111213141516171819202122232425262728 |
- name: Create GitHub release
- on:
- push:
- tags:
- - '*.*.*'
- jobs:
- release:
- if: github.event.base_ref == 'refs/heads/master'
- runs-on: ubuntu-latest
- steps:
- - name: Checkout code
- uses: actions/checkout@v2
- with:
- fetch-depth: '0'
- - name: Create Release
- id: create_release
- uses: actions/create-release@v1
- env:
- GITHUB_TOKEN: ${{ secrets.GH_TOKEN_RAINLOOP }}
- with:
- tag_name: ${{ github.ref }}
- release_name: ${{ github.ref }}
- body: ""
- draft: false
- prerelease: false
|