Skip to content

Commit c30dba2

Browse files
committed
#13
1 parent 56a3fe9 commit c30dba2

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

.github/workflows/release.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -179,6 +179,11 @@ jobs:
179179
if: startsWith(github.ref, 'refs/tags/')
180180

181181
steps:
182+
- name: Checkout code (for GitHub CLI)
183+
uses: actions/checkout@v4
184+
with:
185+
fetch-depth: 0
186+
182187
- name: Download all artifacts
183188
uses: actions/download-artifact@v4
184189
with:
@@ -198,6 +203,11 @@ jobs:
198203
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" | sudo tee /etc/apt/sources.list.d/github-cli.list > /dev/null
199204
sudo apt update && sudo apt install gh -y
200205
206+
- name: Configure Git for GitHub CLI
207+
run: |
208+
git config --global user.name "github-actions[bot]"
209+
git config --global user.email "github-actions[bot]@users.noreply.github.com"
210+
201211
- name: Delete existing release (if any)
202212
run: |
203213
# Silently delete if exists, ignore if doesn't

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ori-launcher",
3-
"version": "1.3.9",
3+
"version": "1.3.10",
44
"description": "Modern Custom Minecraft launcher",
55
"author": {
66
"name": "Cosmic-fi (Cosmic Boucher)",

0 commit comments

Comments
 (0)