Skip to content

Commit

Permalink
publish -> ci
Browse files Browse the repository at this point in the history
  • Loading branch information
barnabwhy committed Feb 25, 2024
1 parent df3eaf6 commit 97bda66
Showing 1 changed file with 4 additions and 13 deletions.
17 changes: 4 additions & 13 deletions .github/workflows/publish.yml → .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
name: 'publish'
name: 'CI'

# This will trigger the action on each push to the `release` branch.
on:
push:
branches:
- release
on: [push]

jobs:
publish-tauri:
Expand Down Expand Up @@ -34,14 +30,9 @@ jobs:
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libappindicator3-dev librsvg2-dev patchelf
- name: install frontend dependencies
run: yarn install # change this to npm or pnpm depending on which one you use
run: yarn install

- uses: tauri-apps/tauri-action@v0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tagName: app-v__VERSION__ # the action automatically replaces \_\_VERSION\_\_ with the app version
releaseName: 'App v__VERSION__'
releaseBody: 'See the assets to download this version and install.'
releaseDraft: true
prerelease: false

0 comments on commit 97bda66

Please sign in to comment.