Skip to content

Commit 42697fa

Browse files
authored
Merge pull request #1 from SpotifyXP/dev
Dev to main
2 parents 413ed5b + 9fbcd8b commit 42697fa

27 files changed

Lines changed: 315 additions & 94 deletions

.github/workflows/main.yaml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: "Repo publisher"
2+
3+
on:
4+
push:
5+
branches:
6+
- dev
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Clone Repository
12+
run: git clone --recursive --branch dev https://github.com/SpotifyXP/SpotifyXP-Repository
13+
- name: Run generate_repo.py script
14+
working-directory: ./SpotifyXP-Repository
15+
run: python3 generate_repo.py
16+
- name: Make public directory
17+
working-directory: ./SpotifyXP-Repository
18+
run: mkdir public
19+
- name: Copy files to public directory
20+
working-directory: ./SpotifyXP-Repository
21+
run: cp -R repo public/
22+
- name: Upload to GitHub Pages
23+
uses: peaceiris/actions-gh-pages@v4
24+
with:
25+
github_token: ${{ secrets.GITHUB_TOKEN }}
26+
publish_dir: ./SpotifyXP-Repository/public

.github/workflows/pullrequest.yaml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: "Pull request tester"
2+
3+
on: pull_request
4+
jobs:
5+
build:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- name: Checkout Pull Request Branch
9+
uses: actions/checkout@v4
10+
with:
11+
ref: ${{ github.event.pull_request.head.ref }}
12+
- name: Run generate_repo.py script
13+
run: python3 generate_repo.py

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.idea/
2+
repo/
3+
venv/
4+
extensions/SpotifyXP.jar

.gitmodules

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[submodule "extensions/MSNStatusSupport"]
2+
path = extensions/MSNStatusSupport
3+
url = https://github.com/SpotifyXP/MSNStatusSupport
4+
[submodule "extensions/SpotifyXP-Last.FM"]
5+
path = extensions/SpotifyXP-Last.FM
6+
url = https://github.com/SpotifyXP/SpotifyXP-Last.FM

.idea/.gitignore

Lines changed: 0 additions & 8 deletions
This file was deleted.

.idea/SpotifyXP-Repository.iml

Lines changed: 0 additions & 10 deletions
This file was deleted.

.idea/inspectionProfiles/profiles_settings.xml

Lines changed: 0 additions & 6 deletions
This file was deleted.

.idea/misc.xml

Lines changed: 0 additions & 7 deletions
This file was deleted.

.idea/modules.xml

Lines changed: 0 additions & 8 deletions
This file was deleted.

.idea/vcs.xml

Lines changed: 0 additions & 6 deletions
This file was deleted.

0 commit comments

Comments
 (0)