Robin Munn

Results 288 comments of Robin Munn

What you probably want to do is have a step in the workflow that runs only during an OS X build, e.g. `if: ${{ matrix.platform == 'osx' }}`. So you...

The short version of the matrix stuff is that you can set up parallel builds in two ways: 1. Have GitHub do it for you, or 2. Do it yourself....

> @rmunn presumably I should have manually updated the version number before creating the tag? Yes. The idea is: - Update the version number in package.json, plus any other changes...

One issue I've discovered is that depending on how you installed icu4c, the installed `.dylib` files might not be on the standard library search path. Yesterday we tried running `brew...

I was able to get the HTML files compiling properly with Webpack by putting the following in my webpack.config.js: ```javascript module: { rules: [ // ... { test: /ng-table\/.*\.html$/, use:...

@neilmayhew If you use download-artifact v4.1.6 instead of v4.1.7, does that fix the issue? Between v4.1.6 and v4.1.7, one of the changes was which unzip-stream method is being used to...

Unfortunately, I don't feel like `upload-artifact` and `download-artifact` are all that well maintained either. I have a PR open to fix https://github.com/actions/upload-artifact/issues/38 and https://github.com/actions/upload-artifact/issues/485, which has been open for over...

> There is clearly a bug in `unzip-stream` since it can't process some apparently valid zip files when used standalone. However, the project seems to be unmaintained (no PRs merged...

I believe this is happening because mailctl isn't receiving a refresh token from Google, and therefore it can't extend the life of the access token Google sends (which has a...

Looks like the `mode` parameter is also required in order to preserve Unix file permissions. The zip.append method that actions/toolkit uses is a tiny wrapper around the zip-stream package: https://github.com/archiverjs/node-archiver/blob/0e0e9ceab65c35e8131701fd2b29ba3c28397385/lib/plugins/zip.js#L55...