Skip to content

Commit eca0cbf

Browse files
committed
Update .gitignore to include .github directory and its contents; add release workflow for Minecraft Splitscreen installer
1 parent b38d2b7 commit eca0cbf

File tree

2 files changed

+28
-1
lines changed

2 files changed

+28
-1
lines changed

.github/workflows/release.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Release workflow for Minecraft Splitscreen Steamdeck installer
2+
# This workflow creates a GitHub release and uploads the install-minecraft-splitscreen.sh script as an asset
3+
# whenever a new tag starting with 'v' is pushed (e.g., v1.0.0).
4+
5+
name: Release Minecraft Splitscreen Installer
6+
7+
on:
8+
push:
9+
tags:
10+
- 'v*' # Trigger on version tags like v1.0, v2.0.1, etc.
11+
12+
jobs:
13+
release:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- name: Checkout repository
17+
uses: actions/checkout@v4
18+
19+
- name: Upload installer script as release asset
20+
uses: softprops/action-gh-release@v2
21+
with:
22+
files: install-minecraft-splitscreen.sh
23+
generate_release_notes: true
24+
env:
25+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,6 @@
88
!add-to-steam.py
99
!accounts.json
1010
!sampleInstance/
11-
!sampleInstance/**
11+
!sampleInstance/**
12+
!.github/
13+
!.github/**

0 commit comments

Comments
 (0)