github-action-push-to-another-repository
github-action-push-to-another-repository copied to clipboard
Support MacOS
I tried to run your action on macOS machine but got error: Error: Container action is only supported on Linux
Can you add support for macOS
Do you have a link to the repository with the logs for this?
Maybe this helps:
jobs:
build:
runs-on: macos-latest # use ubuntu-latest here and it works fine
[...]
- name: whatever you named it
uses: cpina/github-action-push-to-another-repository@main
env:
API_TOKEN_GITHUB: ${{ secrets.API_TOKEN_GITHUB }}
with:
[...]

macos-latest doesn't work for me as well, but ubuntu-latest works fine. As long as you are able to change this @YevhenHerasymenko , it might help.