Skip to content

Commit

Permalink
F
Browse files Browse the repository at this point in the history
  • Loading branch information
Ignatella committed Jun 16, 2024
1 parent 17c492e commit ea301cc
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
9 changes: 8 additions & 1 deletion .github/workflows/tui.publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,13 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Create .env
working-directory: ./tui
run: |
echo "PUBLIC_API_URL=${{ secrets.PUBLIC_API_URL }}" >> .env
echo "PUBLIC_VERSION=${{ github.ref }}" >> .env
echo "PUBLIC_APP_NAME=Tui Documents" >> .env
- name: install dependencies (ubuntu only)
if: matrix.settings.platform == 'ubuntu-22.04' # This must match the platform value defined above.
run: |
Expand Down Expand Up @@ -105,7 +112,7 @@ jobs:
for asset in ./artifacts/**/*; do
assets+=("$asset")
done
tag_name=${{ github.ref }}
tag_name="${{ github.ref }}"
gh release create "$tag_name" "${assets[@]}"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion tui/src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
]
},
"productName": "tui",
"version": "0.0.0",
"version": "0.0.2",
"identifier": "lol.wfis.document-recognition",
"plugins": {},
"app": {
Expand Down

0 comments on commit ea301cc

Please sign in to comment.