Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,12 @@ jobs:
shell: bash

- name: Set version id
id: version-id
id: tauri-version
run: echo "VERSION=$(cat ./src-tauri/tauri.conf.json | grep version | cut -d\" -f 4)" >> "$GITHUB_OUTPUT"
shell: bash

- name: Var check
run: echo "SHORT_SHA=${{ steps.short-sha.outputs.SHORT_SHA }}, VERSION=${{ steps.short-sha.outputs.VERSION }}"
run: echo "SHORT_SHA=${{ steps.short-sha.outputs.SHORT_SHA }}, VERSION=${{ steps.tauri-version.outputs.VERSION }}"
shell: bash

- name: Read SUMRY file
Expand All @@ -84,8 +84,8 @@ jobs:
TAURI_SIGNING_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }}
TAURI_SIGNING_PRIVATE_KEY_PASSWORD: ${{ secrets.TAURI_KEY_PASSWORD }}
with:
tagName: app-${{ steps.short-sha.outputs.VERSION }}-${{ steps.short-sha.outputs.SHORT_SHA }}
releaseName: 'Pepo v${{ steps.short-sha.outputs.VERSION }}-${{ steps.short-sha.outputs.SHORT_SHA }}'
tagName: app-${{ steps.tauri-version.outputs.VERSION }}-${{ steps.short-sha.outputs.SHORT_SHA }}
releaseName: 'Pepo v${{ steps.tauri-version.outputs.VERSION }}-${{ steps.short-sha.outputs.SHORT_SHA }}'
releaseBody: |
${{ steps.sumry.outputs.FILE }}
includeUpdaterJson: true
Expand Down
9 changes: 7 additions & 2 deletions .github/workflows/test-on-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,13 @@ jobs:
run: echo "SHORT_SHA=$(git rev-parse --short HEAD)" >> "$GITHUB_OUTPUT"
shell: bash

- name: Sha check
run: echo "${{ steps.short-sha.outputs.SHORT_SHA }}"
- name: Set version id
id: tauri-version
run: echo "VERSION=$(cat ./src-tauri/tauri.conf.json | grep version | cut -d\" -f 4)" >> "$GITHUB_OUTPUT"
shell: bash

- name: Var check
run: echo "SHORT_SHA=${{ steps.short-sha.outputs.SHORT_SHA }}, VERSION=${{ steps.tauri-version.outputs.VERSION }}"
shell: bash

- uses: tauri-apps/tauri-action@v0
Expand Down
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[submodule "utils"]
path = utils
url = git@github.com:synthlabs/utils.git
url = https://github.com/synthlabs/utils.git