github-action-push-to-another-repository icon indicating copy to clipboard operation
github-action-push-to-another-repository copied to clipboard

Support MacOS

Open YevhenHerasymenko opened this issue 4 years ago • 2 comments

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

YevhenHerasymenko avatar Sep 10 '21 20:09 YevhenHerasymenko

Do you have a link to the repository with the logs for this?

cpina avatar Dec 08 '21 23:12 cpina

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:
      [...]

image

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.

Ismoh avatar Mar 31 '22 21:03 Ismoh