From 97bda66106c5008e447dcd518290df9480ec50e0 Mon Sep 17 00:00:00 2001 From: Barnaby <22575741+barnabwhy@users.noreply.github.com> Date: Sun, 25 Feb 2024 01:11:05 +0000 Subject: [PATCH] publish -> ci --- .github/workflows/{publish.yml => ci.yml} | 17 ++++------------- 1 file changed, 4 insertions(+), 13 deletions(-) rename .github/workflows/{publish.yml => ci.yml} (62%) 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