-
Notifications
You must be signed in to change notification settings - Fork 1
48 lines (37 loc) · 1.26 KB
/
release.yml
File metadata and controls
48 lines (37 loc) · 1.26 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
name: Create Release
on:
push:
tags:
- 'v*.*.*'
jobs:
release:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Create Release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
body: |
## Changes
See [CHANGELOG.md](CHANGELOG.md) for details.
## Installation
```bash
curl -fsSL https://raw.githubusercontent.com/${{ github.repository }}/main/install.sh | bash
```
## Quick Start
1. Navigate to your project directory
2. Setup Discord integration: `/user:discord:setup YOUR_WEBHOOK_URL`
3. Enable notifications: `/user:discord:start`
4. Start working and receive Discord notifications!
## Documentation
- [README.md](README.md) - Full documentation
- [PROJECT-LEVEL-DISCORD-INTEGRATION.md](docs/PROJECT-LEVEL-DISCORD-INTEGRATION.md) - Detailed guide
draft: false
prerelease: false