ci: ensure final step has necessary permissions

This commit is contained in:
Tyler Wilding 2023-07-31 01:26:47 -04:00
parent e1670d8274
commit 83e11095bd
No known key found for this signature in database
GPG key ID: C500E15300515B67
5 changed files with 6 additions and 5 deletions

View file

@ -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

View file

@ -1,7 +1,7 @@
{
"name": "opengoal-launcher",
"private": true,
"version": "2.2.0",
"version": "2.1.4",
"type": "module",
"scripts": {
"dev": "vite",

2
src-tauri/Cargo.lock generated
View file

@ -2535,7 +2535,7 @@ dependencies = [
[[package]]
name = "opengoal-launcher"
version = "2.2.0"
version = "2.1.4"
dependencies = [
"backtrace",
"chrono",

View file

@ -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"

View file

@ -1,7 +1,7 @@
{
"package": {
"productName": "OpenGOAL-Launcher",
"version": "2.2.0"
"version": "2.1.4"
},
"build": {
"distDir": "../dist",