Fix inaccuracy in credits #367
Workflow file for this run
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: Macos Compile test | |
on: | |
push: | |
branches: [ "*" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
if: 0 | |
runs-on: macos-latest | |
steps: | |
- uses: actions/[email protected] | |
with: | |
submodules: "true" | |
- name: Get Complementary file | |
uses: actions/[email protected] | |
with: | |
path: complementary_file | |
repository: UnspaghettifyKart/action-build-private-file | |
ssh-key: ${{ secrets.MACOS_SSH_PRIVATE_KEY }} | |
- name: Install dependencies | |
run: | | |
brew update | |
brew install python3 capstone coreutils make pkg-config tehzz/n64-dev/mips64-elf-binutils cmake | |
- name: Build | |
run: | | |
cp -r complementary_file/* . | |
echo "${{ secrets.AES_KEY }}" | openssl enc -d -aes-256-cbc -pass stdin -pbkdf2 -in baserom.us.z64.aes -out baserom.us.z64 | |
make assets | |
make -j |