Skip to content

Commit 28f7b04

Browse files
committed
chore: Prepare for release
1 parent 244bcbb commit 28f7b04

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ on:
55
tags:
66
- "v*"
77

8+
# Add permissions at the top level
9+
permissions:
10+
contents: write # This is needed for creating releases
11+
812
jobs:
913
release:
1014
name: Create Release
@@ -18,8 +22,8 @@ jobs:
1822
env:
1923
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2024
with:
21-
tag_name: ${{ github.ref }}
22-
release_name: Release ${{ github.ref }}
25+
tag_name: ${{ github.ref_name }}
26+
release_name: Release ${{ github.ref_name }}
2327
draft: false
2428
prerelease: false
2529

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ With `s`, you can harness the power of `screen` without the cognitive overhead o
2626
Install or upgrade to the latest version using our installation script:
2727

2828
```bash
29-
curl -fsSL https://raw.githubusercontent.com/yourusername/s/main/install.sh | bash
29+
curl -fsSL https://raw.githubusercontent.com/kolarski/s/main/install.sh | bash
3030
```
3131

3232
This script will:
@@ -41,7 +41,7 @@ This script will:
4141

4242
```bash
4343
# Clone the repository
44-
git clone https://github.com/yourusername/s.git
44+
git clone https://github.com/kolarski/s.git
4545
cd s
4646

4747
# Build and install

0 commit comments

Comments
 (0)