Skip to content

Commit

Permalink
add basic CI
Browse files Browse the repository at this point in the history
  • Loading branch information
diogotr7 committed Jun 13, 2024
1 parent 57e77cb commit c76ed97
Show file tree
Hide file tree
Showing 3 changed files with 47 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Build

on: push

jobs:
build:
runs-on: windows-latest

steps:
- name: Clone
uses: actions/checkout@v3

- name: Publish
run: dotnet publish

- name: Upload
uses: actions/upload-artifact@v4
with:
name: StarBreaker
path: StarBreaker/bin/Release/net8.0/publish
22 changes: 22 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1 +1,23 @@
# StarBreaker

Extraction tool for Star Citizen game files. Currently only able to extract *.dbc files, DataCoreBinary into xml format.

## Usage

```
StarBreaker v1.0.0
USAGE
StarBreaker [options]
StarBreaker [command] [...]
OPTIONS
-h|--help Shows help text.
--version Shows version information.
COMMANDS
extract Extracts a DataForge binary file into separate xml files
extract-single Extracts a DataForge binary file into a single xml
You can run `StarBreaker [command] --help` to show help on a specific command.
```
5 changes: 5 additions & 0 deletions StarBreaker.sln
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "StarBreaker", "StarBreaker\
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "StarBreaker.Forge", "StarBreaker.Forge\StarBreaker.Forge.csproj", "{4E800EFE-B681-4113-AF5D-BE54888F279B}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{3AFABC6F-7439-47C3-B4CE-5C3FA7B1E61F}"
ProjectSection(SolutionItems) = preProject
README.md = README.md
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down

0 comments on commit c76ed97

Please sign in to comment.