Skip to content

Commit

Permalink
feat: add external endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
freepoi committed Jul 21, 2021
1 parent 53eba5d commit 28ec2ff
Show file tree
Hide file tree
Showing 5 changed files with 581 additions and 367 deletions.
34 changes: 17 additions & 17 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,30 +12,30 @@ jobs:
matrix:
include:
- os: ubuntu-latest
artifactName: "^europa.*ubuntu$"
targetName: "europa"
platform: "x86_64-linux"
appType: "AppImage"
artifactName: '^europa.*ubuntu$'
targetName: 'europa'
platform: 'x86_64-linux'
appType: 'AppImage'

- os: windows-latest
artifactName: "^europa.*win\\.exe$"
targetName: "europa.exe"
platform: "x86_64-win"
appType: "exe"
targetName: 'europa.exe'
platform: 'x86_64-win'
appType: 'exe'

- os: macos-latest
artifactName: "^europa.*darwin$"
targetName: "europa"
platform: "x86_64-darwin"
appType: "dmg"
artifactName: '^europa.*darwin$'
targetName: 'europa'
platform: 'x86_64-darwin'
appType: 'dmg'

steps:
- uses: actions/checkout@v2

- uses: actions/setup-node@v2
with:
node-version: '14'

- run: yarn

- name: Prepare for app notarization (macOS)
Expand All @@ -51,7 +51,7 @@ jobs:
with:
owner: patractlabs
repo: europa
tag: v0.3.2
tag: v0.3.3
file: ${{ matrix.artifactName }}
token: ${{ secrets.GITHUB_TOKEN }}

Expand Down Expand Up @@ -113,7 +113,7 @@ jobs:
file: dist/europa
asset_name: europa-ui-${{ steps.get_version_win.outputs.VERSION }}-${{ matrix.platform }}.${{ matrix.appType }}
tag: ${{ steps.get_version_win.outputs.VERSION }}
body: "release"
body: 'release'
prerelease: true

- name: Upload applications to release
Expand All @@ -124,5 +124,5 @@ jobs:
file: dist/europa
asset_name: europa-ui-${{ steps.get_version.outputs.VERSION }}-${{ matrix.platform }}.${{ matrix.appType }}
tag: ${{ steps.get_version.outputs.VERSION }}
body: "release"
prerelease: true
body: 'release'
prerelease: true
6 changes: 6 additions & 0 deletions .prettierrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
module.exports = {
jsxSingleQuote: true,
singleQuote: true,
tabWidth: 2,
arrowParens: 'avoid',
};
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "europa-ui",
"version": "0.3.29",
"version": "0.3.30",
"main": "main.js",
"private": true,
"description": "An UI used for deploying and testing contracts on the Europa node embedded",
Expand Down
Loading

0 comments on commit 28ec2ff

Please sign in to comment.