diff --git a/.github/workflows/publish.yml b/.github/workflows/ci.yml similarity index 62% rename from .github/workflows/publish.yml rename to .github/workflows/ci.yml index 4096f45..6e1a0b1 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/ci.yml @@ -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: @@ -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 \ No newline at end of file + \ No newline at end of file