Skip to content

Commit

Permalink
Fixed email field, again
Browse files Browse the repository at this point in the history
  • Loading branch information
Tripater committed Aug 11, 2024
1 parent 6929f4c commit 277a273
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ jobs:
create_release:
runs-on: ubuntu-latest
needs: [build_windows, build_linux, build_mac]
if: ${{ success() }} # Ensures the job runs only if all dependent jobs succeed
if: ${{ success() }}
steps:
- name: Checkout code
uses: actions/checkout@v2
Expand Down Expand Up @@ -137,7 +137,7 @@ jobs:
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Ensure your token is correctly set up in repository secrets
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: v${{ steps.get_version.outputs.version }}
release_name: Release v${{ steps.get_version.outputs.version }}
Expand All @@ -147,7 +147,7 @@ jobs:
- name: Upload Release Asset (Windows)
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Ensure your token is correctly set up in repository secrets
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./dist/windows/
Expand All @@ -157,7 +157,7 @@ jobs:
- name: Upload Release Asset (Linux)
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Ensure your token is correctly set up in repository secrets
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./dist/linux/
Expand All @@ -167,7 +167,7 @@ jobs:
- name: Upload Release Asset (Mac)
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Ensure your token is correctly set up in repository secrets
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./dist/mac/
Expand Down
7 changes: 5 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,17 @@
"name": "excalidraw-electron",
"description": "A simple Electron wrapper for Excalidraw.",
"version": "1.0.0",
"author": "Damiano Ernesti",
"email": "[email protected]",
"author": "Damiano Ernesti <[email protected]>",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/Tripater/excalidraw-electron.git"
},
"bugs": {
"url": "https://github.com/Tripater/excalidraw-electron/issues",
"email": "[email protected]"
},
"main": "public/electron.mjs",
"browserslist": [
"last 1 chrome version",
Expand Down

0 comments on commit 277a273

Please sign in to comment.