diff --git a/.github/workflows/create-artifact-win.yml b/.github/workflows/create-artifact-win.yml new file mode 100644 index 0000000..de32bad --- /dev/null +++ b/.github/workflows/create-artifact-win.yml @@ -0,0 +1,32 @@ +name: Create artifact [LINUX] + +on: + workflow_dispatch: {} + +jobs: + build: + runs-on: ubuntu-20.04 + steps: + - name: Check out Git repository + uses: actions/checkout@v3 + + - name: Install Node.js + uses: actions/setup-node@v3 + with: + node-version: 16 + + - name: Install dependencies + run: npm i + + - name: "Build" + run: npm run build + + - name: Upload Artifact + uses: actions/upload-artifact@v3 + with: + name: linux-build + retention-days: 3 + path: | + build + !build/*-unpacked + !build/.icon-ico diff --git a/package.json b/package.json index b5d7347..5546d02 100644 --- a/package.json +++ b/package.json @@ -90,9 +90,9 @@ "displayName": "Mizar TCP Tester", "backgroundColor": "transparent", "showNameOnTiles": true, - "identityName": "62514FabioDiStasio.AntaresSQLClient", + "identityName": "62514FabioDiStasio.MizarTCPTester", "publisher": "CN=1A2729ED-865C-41D2-9038-39AE2A63AA52", - "applicationId": "FabioDiStasio.AntaresSQLClient" + "applicationId": "FabioDiStasio.MizarTCPTester" } }, "dependencies": { diff --git a/src/renderer/scss/main.scss b/src/renderer/scss/main.scss index 9354a80..648bd67 100644 --- a/src/renderer/scss/main.scss +++ b/src/renderer/scss/main.scss @@ -5,27 +5,27 @@ font-family: "Material Icons"; font-style: normal; font-weight: 400; - src: url("../fonts/MaterialIcons-Regular.eot"); /* For IE6-8 */ + src: url("@/fonts/MaterialIcons-Regular.eot"); /* For IE6-8 */ src: local("Material Icons"), local("MaterialIcons-Regular"), - url("../fonts/MaterialIcons-Regular.woff2") format("woff2"), - url("../fonts/MaterialIcons-Regular.woff") format("woff"), - url("../fonts/MaterialIcons-Regular.ttf") format("truetype"); + url("@/fonts/MaterialIcons-Regular.woff2") format("woff2"), + url("@/fonts/MaterialIcons-Regular.woff") format("woff"), + url("@/fonts/MaterialIcons-Regular.ttf") format("truetype"); } @font-face { font-family: "Roboto Regular"; font-style: normal; font-weight: 400; - src: url("../fonts/Roboto-Regular.ttf") format("truetype"); + src: url("@/fonts/Roboto-Regular.ttf") format("truetype"); } @font-face { font-family: "Roboto Mono"; font-style: normal; font-weight: 400; - src: url("../fonts/RobotoMono-Regular.ttf") format("truetype"); + src: url("@/fonts/RobotoMono-Regular.ttf") format("truetype"); } .material-icons {