Skip to content

wrong path for script to run in workflow #2

wrong path for script to run in workflow

wrong path for script to run in workflow #2

Workflow file for this run

name: MacOS Build
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
workflow_dispatch:
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Set up environment
run: |
brew install bash
- name: Run build script
run: |
chmod +x ./scripts/build_sokol_library.sh
./scripts/build_sokol_library.sh
shell: bash
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: macos-build
path: ./build/
if-no-files-found: error