#GitHub - douglascamata/setup-docker-maco...

1 messages · Page 1 of 1 (latest)

vale thunder
bleak imp
#

@vale thunder do you actually want dagger running on the mac CI runner? Now I'm curious of your use case 😁

vale thunder
#

I'm back at it with trying to release darwin specific builds: this time, also needing codesign with entitlements. So the build happens on the mac and then I was hoping to just use my dagger call upload-artifact ... tooling and it "just work ™ "

I got around this by moving the darwin artifact off the mac runner to the ubuntu runner with:

      - name: Upload darwin artifacts for gh release
        uses: actions/upload-artifact@v4
        with:
          name: darwin-release
          path: build/
          retention-days: 1

....

      - name: Download darwin artifacts
        uses: actions/download-artifact@v4
        with:
          name: darwin-release
          path: build/
#

and then doing one big dagger call upload-artifact ...

#

Not open source yet, but I can point you to some code hopefully next week or so