Skip to content

Commit 5b546e6

Browse files
committed
Improve YAML
Uses EOF instead of ‘EOF’ (from GitHub Copilot’s suggestion), updates design template to reflect stabilizing against actual versions rather than `-latest`.
1 parent a0eac03 commit 5b546e6

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ jobs:
181181
echo "${{ github.ref_name }}" > "$PKG_NAME/VERSION"
182182
183183
echo "Creating README.txt..."
184-
cat > "$PKG_NAME/README.txt" <<'EOF'
184+
cat > "$PKG_NAME/README.txt" <<EOF
185185
crc-fast Binary Distribution
186186
Version: ${{ github.ref_name }}
187187
Platform: Linux ${{ matrix.arch }}
@@ -307,7 +307,7 @@ jobs:
307307
echo "${{ github.ref_name }}" > "$PKG_NAME/VERSION"
308308
309309
echo "Creating README.txt..."
310-
cat > "$PKG_NAME/README.txt" <<'EOF'
310+
cat > "$PKG_NAME/README.txt" <<EOF
311311
crc-fast Binary Distribution
312312
Version: ${{ github.ref_name }}
313313
Platform: macOS ${{ matrix.arch }}

.kiro/specs/github-release-automation/design.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ artifacts:
250250
matrix:
251251
include:
252252
- target: x86_64-unknown-linux-gnu
253-
os: ubuntu-latest
253+
os: ubuntu-22.04
254254
platform: linux
255255
arch: x86_64
256256
ext: tar.gz
@@ -268,7 +268,7 @@ matrix:
268268
ext: tar.gz
269269

270270
- target: x86_64-pc-windows-msvc
271-
os: windows-latest
271+
os: windows-2022
272272
platform: windows
273273
arch: x86_64
274274
ext: zip

0 commit comments

Comments
 (0)