diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f4666bf..260a897 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -3,6 +3,8 @@ run-name: ${{ github.actor }} Release Gui for Google Emulators. on: push: + # branches: + # - main tags: - '*.*.*' @@ -15,7 +17,7 @@ jobs: if: startsWith(github.ref, 'refs/tags/') permissions: contents: write - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 outputs: release_id: ${{ steps.create-release.outputs.result }} @@ -38,8 +40,8 @@ jobs: const { data } = await github.rest.repos.createRelease({ owner: context.repo.owner, repo: context.repo.repo, - tag_name: `app-v${process.env.PACKAGE_VERSION}`, - name: `Desktop App v${process.env.PACKAGE_VERSION}`, + tag_name: `v${process.env.PACKAGE_VERSION}`, + name: `Gui for GCP emulator App v${process.env.PACKAGE_VERSION}`, body: 'Take a look at the assets to download and install this app.', draft: true, prerelease: false @@ -53,7 +55,7 @@ jobs: strategy: fail-fast: false matrix: - platform: [macos-latest, ubuntu-20.04, ubuntu-22.04, windows-latest] + platform: [macos-latest, ubuntu-22.04, windows-latest] runs-on: ${{ matrix.platform }} steps: @@ -68,13 +70,13 @@ jobs: uses: dtolnay/rust-toolchain@stable - name: install dependencies (ubuntu only) - if: matrix.platform == 'ubuntu-22.04' || matrix.platform == 'ubuntu-20.04' + if: matrix.platform == 'ubuntu-22.04' run: | sudo apt-get update 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: npm install - uses: tauri-apps/tauri-action@v0 env: diff --git a/package.json b/package.json index 1904be8..94d8cb5 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "gcp-emulator-gui", "private": true, - "version": "0.0.1", + "version": "0.1.0-alpha", "type": "module", "scripts": { "dev": "vite",