Create SECURITY.md #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: push | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node.js environment | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: ".nvmrc" | |
cache: "yarn" | |
- name: Install Dependencies | |
run: yarn install | |
# npm config set msvs_version 2022 | |
- name: Build binaries | |
run: yarn build | |
- name: Build Exe | |
if: ${{ matrix.os == 'windows-latest' }} | |
run: yarn exe | |
- name: Upload release assets | |
uses: softprops/action-gh-release@v1 | |
with: | |
files: | | |
prebuilds/*.tar.gz | |
./airtunes2.exe |