-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add auto build. Remove dist from repo * Add auto build. Remove dist from repo * Fixed bug in ui where it didn't reflect currency type setting * Fixed bug in ui where it didn't reflect currency type setting * Updated readme to reflect release download * Updated fxmanifest to reflect new auto build * Fixed Auto Build File. Fixed fxmanifest. * Fixing static asset links * Fixing static asset links * Fixing static asset links * Fixing static asset links
- Loading branch information
Showing
105 changed files
with
450 additions
and
348 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
name: "release" | ||
|
||
on: | ||
push: | ||
branches: | ||
- "main" | ||
|
||
jobs: | ||
release: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Set Node.js 16.x | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16.x | ||
- name: Install Node Modules | ||
run: yarn install | ||
working-directory: ./ui | ||
- name: Build Application | ||
run: yarn run build | ||
working-directory: ./ui | ||
- uses: vimtor/action-zip@v1 | ||
with: | ||
files: fxmanifest.lua license.md README.md locale.lua version ui/dist client server config img languages | ||
recursive: false | ||
dest: bcc-stables.zip | ||
- name: get-npm-version | ||
id: package-version | ||
uses: martinbeentjes/npm-get-version-action@main | ||
with: | ||
path: ui | ||
- uses: "marvinpinto/action-automatic-releases@latest" | ||
with: | ||
repo_token: "${{ secrets.GITHUB_TOKEN }}" | ||
automatic_release_tag: "${{ steps.package-version.outputs.current-version}}" | ||
prerelease: false | ||
title: "Release ${{ steps.package-version.outputs.current-version}}" | ||
files: | | ||
bcc-stables.zip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
html | ||
ui/node_modules | ||
|
||
# Logs | ||
ui/logs | ||
ui/*.log | ||
ui/npm-debug.log* | ||
ui/yarn-debug.log* | ||
ui/yarn-error.log* | ||
ui/pnpm-debug.log* | ||
ui/lerna-debug.log* | ||
|
||
ui/node_modules | ||
ui/.DS_Store | ||
ui/dist | ||
ui/dist-ssr | ||
ui/coverage | ||
ui/*.local | ||
|
||
/cypress/videos/ | ||
/cypress/screenshots/ | ||
|
||
# Editor directories and files | ||
ui/.vscode/* | ||
ui/!.vscode/extensions.json | ||
ui/.idea | ||
ui/*.suo | ||
ui/*.ntvs* | ||
ui/*.njsproj | ||
ui/*.sln | ||
ui/*.sw? | ||
ui/.yarn-installed |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.