diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index a0f6278..60a98e5 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -58,7 +58,7 @@ jobs: default_author: github_actor author_name: "OpenGOALBot" author_email: "OpenGOALBot@users.noreply.github.com" - message: "release: bump to version - ${{ steps.version-bump.outputs.new_version }}" + message: "release: bump to version - ${{ steps.version_bump.outputs.new_tag }}" tag: "${{ steps.version_bump.outputs.new_tag }}" create-release: @@ -197,6 +197,7 @@ jobs: - name: update release metadata and publish the release env: RELEASE_ID: ${{needs.create-release.outputs.release_id}} + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | yarn install --frozen-lockfile yarn update-release-meta diff --git a/package.json b/package.json index f2425cc..a93c6bd 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "opengoal-launcher", "private": true, - "version": "2.2.0", + "version": "2.1.4", "type": "module", "scripts": { "dev": "vite", diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index f6fec67..d877d0a 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -2535,7 +2535,7 @@ dependencies = [ [[package]] name = "opengoal-launcher" -version = "2.2.0" +version = "2.1.4" dependencies = [ "backtrace", "chrono", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index b7863aa..39c9e26 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "opengoal-launcher" -version = "2.2.0" # APP_VERSION +version = "2.1.4" # APP_VERSION description = "A frontend for the OpenGOAL project" authors = ["OpenGOAL"] license = "ISC" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 6928b4a..ff7486f 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,7 +1,7 @@ { "package": { "productName": "OpenGOAL-Launcher", - "version": "2.2.0" + "version": "2.1.4" }, "build": { "distDir": "../dist",