Skip to content

Commit

Permalink
fix: error
Browse files Browse the repository at this point in the history
  • Loading branch information
lencx committed Mar 4, 2023
1 parent 4d752c8 commit a0e2af5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,6 @@ jobs:
with:
key: ${{ matrix.target }}

- name: Install dependencies (macos only)
if: matrix.os == 'macos-latest'
run: pip install xattr

- name: Install dependencies (ubuntu only)
if: matrix.os == 'ubuntu-latest'
run: |
Expand Down Expand Up @@ -110,6 +106,11 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Install xattr
run: |
sudo apt-get update
sudo apt-get install -y xattr
- name: Query version number
run: echo "version=${GITHUB_REF:11}" >> $GITHUB_ENV

Expand Down
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
},
"package": {
"productName": "ChatGPT",
"version": "0.11.1"
"version": "0.11.0"
},
"tauri": {
"allowlist": {
Expand Down

0 comments on commit a0e2af5

Please sign in to comment.