deno.land / x / lume@v2.1.4 / .github / workflows / release.yml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
name: Create Release
on: push: tags: - 'v*'
jobs: release: name: Create Release runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@v3
- name: Create Release uses: actions/create-release@v1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: tag_name: ${{ github.ref }} release_name: ${{ github.ref }} body: | See the [changelog](CHANGELOG.md).
lume

Version Info

Tagged at
7 months ago