Apple Music ALAC / Dolby Atmos Downloader
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
name: Go
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ "main" ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ "main" ]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
|
|
|
|
build:
|
|
|
|
runs-on: windows-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: Set up Go
|
|
|
|
uses: actions/setup-go@v4
|
|
|
|
with:
|
|
|
|
go-version: '1.20'
|
|
|
|
|
|
|
|
- name: Build
|
|
|
|
run: |
|
|
|
|
go build -o main.exe -v ./main.go
|
|
|
|
go build -o main_atmos.exe -v ./main_atmos.go
|
|
|
|
go build -o main_select.exe -v ./main_select.go
|
|
|
|
|
|
|
|
- name: Upload main.exe
|
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
name: apple-music-alac-atmos-downloader
|
|
|
|
path: main.exe main_atmos.exe main_select.exe
|