Skip to content

Commit 08f4567

Browse files
Create build wf
1 parent aec55dc commit 08f4567

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/build.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# .github/workflows/build.yml
2+
name: Build
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
env:
9+
SPOTIFY_CLIENT_ID: ${{ vars.SPOTIFY_CLIENT_ID }}
10+
SPOTIFY_CLIENT_SECRET: ${{ secrets.SPOTIFY_CLIENT_SECRET }}
11+
steps:
12+
- uses: actions/checkout@v4
13+
- uses: actions/setup-java@v4
14+
with:
15+
distribution: temurin
16+
java-version: 23
17+
- run: ./gradlew run --args="-access https://accounts.spotify.com -resource https://api.spotify.com -page 5"

0 commit comments

Comments
 (0)