This commit is contained in:
cowboy 2025-03-08 00:37:54 -08:00 committed by GitHub
parent 552f2a52a6
commit 1258e74a2f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 0 additions and 237 deletions

View File

@ -1,64 +0,0 @@
name: Bug Report
title: "[BUG] "
description: Report a problem you're having
body:
- type: markdown
attributes:
value: |
> [!IMPORTANT]
> Do NOT open an issue if you're getting an error saying "`The given key 'redist.zip' was not present in the dictionary.`", or if you're getting stuck on "Configuring Roblox...".
> This problem has been fixed in the latest version of Bloxstrap. You either have auto-updates disabled or are using someone's custom build of an old version.
> Download the latest version [here](https://github.com/pizzaboxer/bloxstrap/releases/latest).
### **Preliminary instructions**
- Before opening an issue, please [check the Wiki first](https://github.com/pizzaboxer/bloxstrap/wiki/) to see if your problem has been addressed there.
- If it isn't, please confirm which pages that you read that were relevant to your issue.
- Your issue ***will*** be closed without warning if there's a Wiki page addressing your problem.
- If your problem is with Roblox itself (i.e. it crashes or doesn't launch), [check to see if it happens without Bloxstrap](https://github.com/pizzaboxer/bloxstrap/wiki/Roblox-crashes-or-does-not-launch).
- Please only open an issue if your problem happens only with Bloxstrap, and state clearly that this is the case, as anything else is out of my control.
- If you are getting a Bloxstrap Exception error, please attach a copy of the provided log file. There is a button on the dialog that locates it for you.
- Also, please ensure you are using the [latest version of Bloxstrap](https://github.com/pizzaboxer/bloxstrap/releases/latest). Your report will be null and void if you are not.
- If more clarification on the issue is needed, and you don't respond after a month, then your issue will be closed as stale.
- type: checkboxes
id: terms
attributes:
label: Acknowledgement of preliminary instructions
options:
- label: I have read the preliminary instructions, and I am certain that my problem has not already been addressed.
required: true
- label: I have thoroughly looked through the available Wiki articles and could not find a solution to my problem.
required: true
- label: I am using the latest version of Bloxstrap.
required: true
- label: I did not answer truthfully to all the above checkboxes.
- type: input
id: version
attributes:
label: Bloxstrap Version
description: "What version of Bloxstrap are you using? Find it in the 'About' section of the Settings"
placeholder: "v1.0.0"
validations:
required: true
- type: textarea
id: what-happened
attributes:
label: What problem did you encounter?
description: Provide a comprehensive description of the problem you're facing. Don't forget to attach any additional resources you may have, such as log files and screenshots.
validations:
required: true
- type: textarea
id: repro-steps
attributes:
label: How do you reproduce the problem?
description: Include the steps to reproduce the problem from start to finish. Include details such as FastFlags you added and settings you changed.
placeholder: |
1. Go to '...'
2. Click on '...'
3. Scroll down to '...'
4. See error
- type: textarea
id: log
attributes:
label: Bloxstrap Log
description: If you're getting a Bloxstrap Exception error, upload your log file here. Otherwise, just leave it empty.
value: "N/A"
render: text

View File

@ -1,25 +0,0 @@
name: Feature Request
title: "[REQ] "
description: Suggest a feature that should be added
body:
- type: markdown
attributes:
value: |
### **Preliminary instructions**
- Please first check to see if your idea has already been suggested. You can check by [searching all previous issues](https://github.com/pizzaboxer/bloxstrap/issues?q=is%3Aissue).
- If your feature suggestion is to do with Roblox itself, please consider that what's possible is heavily constrained by what [FastFlags](https://github.com/pizzaboxer/bloxstrap/wiki/A-guide-to-FastFlags) are available.
- Don't ask for support on Linux or Mac. That's not happening anytime soon, sorry.
- type: checkboxes
id: terms
attributes:
label: Acknowledgement of preliminary instructions
options:
- label: I have read and acknowledged the preliminary instructions.
required: true
- type: textarea
id: what-happened
attributes:
label: What idea do you have?
description: Provide a comprehensive description of what you think can be improved!
validations:
required: true

View File

@ -1,14 +0,0 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
- package-ecosystem: "nuget"
directory: "/"
schedule:
interval: "daily"
- package-ecosystem: "gitsubmodule"
directory: "/"
schedule:
interval: "daily"

View File

@ -1,30 +0,0 @@
name: CI (Debug)
on: [push, pull_request]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: actions/setup-dotnet@v4
with:
dotnet-version: '6.0.x'
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Publish
run: dotnet publish -p:PublishSingleFile=true -p:CommitHash=${{ github.sha }} -p:CommitRef=${{ github.ref_type }}/${{ github.ref_name }} -r win-x64 -c Debug --self-contained false .\Bloxstrap\Bloxstrap.csproj
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: Bloxstrap (Debug) (${{ github.sha }})
path: .\Bloxstrap\bin\Debug\net6.0-windows\win-x64\publish\*

View File

@ -1,90 +0,0 @@
name: CI (Release)
on: [push, pull_request]
jobs:
build:
runs-on: windows-latest
outputs:
artifact-id: ${{ steps.upload-artifact.outputs.artifact-id }}
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: actions/setup-dotnet@v4
with:
dotnet-version: '6.0.x'
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Publish
run: dotnet publish -p:PublishSingleFile=true -p:CommitHash=${{ github.sha }} -p:CommitRef=${{ github.ref_type }}/${{ github.ref_name }} -r win-x64 -c Release --self-contained false .\Bloxstrap\Bloxstrap.csproj
- name: Upload Artifact
id: upload-artifact
uses: actions/upload-artifact@v4
with:
name: Bloxstrap (Release) (${{ github.sha }})
path: .\Bloxstrap\bin\Release\net6.0-windows\win-x64\publish\*
release:
needs: build
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/v')
steps:
- name: Sign and download artifact
uses: signpath/github-action-submit-signing-request@v1.1
with:
api-token: '${{ secrets.SIGNPATH_API_TOKEN }}'
organization-id: '107b3de5-057b-42fc-a985-3546e4261775'
project-slug: 'bloxstrap'
signing-policy-slug: 'release-signing'
artifact-configuration-slug: 'github-ci'
github-artifact-id: '${{ needs.build.outputs.artifact-id }}'
wait-for-completion: true
output-artifact-directory: 'release'
- name: Rename binaries
run: mv release/Bloxstrap.exe Bloxstrap-${{ github.ref_name }}.exe
- name: Create release
uses: softprops/action-gh-release@v2
with:
draft: true
files: Bloxstrap-${{ github.ref_name }}.exe
name: Bloxstrap ${{ github.ref_name }}
release-test:
needs: build
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/release-test')
steps:
- name: Sign and download artifact
uses: signpath/github-action-submit-signing-request@v1.1
with:
api-token: '${{ secrets.SIGNPATH_API_TOKEN }}'
organization-id: '107b3de5-057b-42fc-a985-3546e4261775'
project-slug: 'bloxstrap'
signing-policy-slug: 'release-signing'
artifact-configuration-slug: 'github-ci'
github-artifact-id: '${{ needs.build.outputs.artifact-id }}'
wait-for-completion: true
output-artifact-directory: 'release'
- name: Rename binaries
run: mv release/Bloxstrap.exe Bloxstrap-${{ github.ref_name }}.exe
- name: Create release
uses: softprops/action-gh-release@v2
with:
draft: true
files: Bloxstrap-${{ github.ref_name }}.exe
name: Bloxstrap ${{ github.ref_name }}

View File

@ -1,14 +0,0 @@
name: Publish to Winget
on:
release:
types: [released]
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: vedantmgoyal9/winget-releaser@main
with:
identifier: pizzaboxer.Bloxstrap
token: ${{ secrets.WINGET_TOKEN }}