Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@ name: Bug Report
description: Report a bug in SimpleNvimEditor
labels: ["bug"]
body:
- type: markdown
attributes:
value: Please kindly search the existing (open/closed) issues before filing issues.

- type: checkboxes
id: duplicate-check
attributes:
label: Duplicate check
options:
- label: I have searched existing open and closed issues.
required: true

- type: input
id: version
attributes:
Expand All @@ -16,7 +28,7 @@ body:
attributes:
label: CPU architecture
options:
- x64
- amd64
- arm64
validations:
required: true
Expand Down
2 changes: 2 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
blank_issues_enabled: true
contact_links: []
12 changes: 12 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@ name: Feature Request
description: Suggest a new feature or improvement
labels: ["enhancement"]
body:
- type: markdown
attributes:
value: Please kindly search the existing (open/closed) issues before filing issues.

- type: checkboxes
id: duplicate-check
attributes:
label: Duplicate check
options:
- label: I have searched existing open and closed issues.
required: true

- type: textarea
id: description
attributes:
Expand Down
7 changes: 3 additions & 4 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,10 @@ jobs:
mkdir -p dist
nfpm package -f packaging/nfpm.yaml -p deb -t dist/
nfpm package -f packaging/nfpm.yaml -p rpm -t dist/
# Rename to include "linux" in filenames for clarity.
# Rename to a consistent simplenvim-<version>-linux.<goarch>.{deb,rpm} pattern.
cd dist
for f in *.deb *.rpm; do
mv "$f" "$(echo "$f" | sed 's/^simplenvim_/simplenvim_linux_/' | sed 's/^simplenvim-/simplenvim-linux-/')"
done
for f in *.deb; do mv "$f" "simplenvim-${VERSION}-linux.${ARCH}.deb"; done
for f in *.rpm; do mv "$f" "simplenvim-${VERSION}-linux.${ARCH}.rpm"; done
ls -l

- uses: actions/upload-artifact@v4
Expand Down
Loading