Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(github): missing apk release build ds-22 #24

Merged
merged 2 commits into from
Jan 16, 2025
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
85 changes: 43 additions & 42 deletions .github/ISSUE_TEMPLATE/bug-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@ name: 🪲 Bug Report
description: Report a bug
title: "bug:"
labels: ["bug"]
assignees: ["KeidsID"]
body:
- type: dropdown
id: Severity
- id: severity
type: dropdown
attributes:
label: "Severity Level"
options:
Expand All @@ -13,15 +14,43 @@ body:
- "severity-3 (Trivial)"
validations:
required: true
- type: textarea
id: description
- id: used-os
type: dropdown
attributes:
label: Used OS (Operating System)
description: Which operating systems you used when the issue occurred?
multiple: true
options:
- Windows
- MacOS
- Android
- Other (mention in the description)
validations:
required: true
- id: used-browser
type: dropdown
attributes:
label: Used Browser (For Web)
description: If the issue occurred on a web page, which browser did you use?
multiple: true
options:
- "Chrome"
- "Safari"
- "Edge"
- "Firefox"
- "Opera"
- "Other (mention in the description)"
validations:
required: false
- id: description
type: textarea
attributes:
label: Description
description: What is the issue?
validations:
required: true
- type: textarea
id: steps
- id: reproduce-steps
type: textarea
attributes:
label: Steps To Reproduce
description: How can we reproduce the issue?
Expand All @@ -31,50 +60,22 @@ body:
3. Look there
validations:
required: true
- type: textarea
id: expected
- id: expected-results
type: textarea
attributes:
label: Expected Results
description: What do you expect to happen?
validations:
required: true
- type: textarea
id: actual
- id: actual-results
type: textarea
attributes:
label: Actual Results
description: What is actually happening?
validations:
required: true
- type: textarea
id: screenshots
- id: additional-media
type: textarea
attributes:
label: Additional Screenshots/Videos
description: Optional screenshots or videos that may help showcase the issue
- type: dropdown
id: OS
attributes:
label: Used OS (Operating System)
description: Which operating systems you used when the issue occurred?
multiple: true
options:
- Windows
- MacOS
- Android
- Other (mention in the description)
validations:
required: true
- type: dropdown
id: browser
attributes:
label: Used Browser (For Web)
description: If the issue occurred on a web page, which browser did you use?
multiple: true
options:
- "Chrome"
- "Safari"
- "Edge"
- "Firefox"
- "Opera"
- "Other (mention in the description)"
validations:
required: false
label: Additional Images/Videos
description: Provide screenshots or videos that may help showcase the issue
17 changes: 9 additions & 8 deletions .github/ISSUE_TEMPLATE/feat-request.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
name: 💡 Feature Request
description: Suggest a feature request
description: Request a new feature
title: "feat: "
labels: ["feat"]
assignees: ["KeidsID"]
body:
- type: textarea
id: what-feature
- id: description
type: textarea
attributes:
label: What feature?
placeholder: Add descriptions
placeholder: What feature do you want to add?
validations:
required: true
- type: textarea
id: screenshots
- id: additional-media
type: textarea
attributes:
label: Add screenshots
placeholder: Add screenshots, mockups, etc.
label: Additional Images/Videos
placeholder: Provide screenshots or videos that may help showcase the feature
5 changes: 3 additions & 2 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -204,5 +204,6 @@ jobs:
tag_name: "${{ env.RELEASE_TAG }}+${{ env.BUILD_NUMBER }}--apk-build"
generate_release_notes: true
files: |
"build/app/outputs/flutter-apk/app-release.apk"
"CHANGELOG.md"
build/app/outputs/flutter-apk/app-release.apk
CHANGELOG.md
LICENSE
Loading