Reference GitHub file in jsFiddle

TLDR; Visit rawgit.com which will pop your files on a CDN straight from GitHub so you can use them. Unfortunately none of the answers here worked for me. The rawgithub URL didn’t seem to work as the connection gets refused. So here’s a full solution that did work. Firstly in GitHub you need to click … Read more

Referencing a .css file in github repo as stylesheet in a .html file

Important: rawgit.com is shutting down. Read more about other alternatives here – https://rawgit.com/ Found something really cool. You get the raw link as: http://raw.github.com/… Simply fetch the files from rawgit.com (or cdn.rawgit.com) instead of raw.github.com and DONE! UPDATE: You can also use raw.githack.com if you want to serves raw files directly from Bitbucket or GitLab

Error “The authenticity of host ‘github.com’ can’t be established. RSA key fingerprint “

You should simply be able to answer ‘yes‘, which will update your ~/.ssh/known_hosts file. A better approach, to avoid any MITM (Man-In-The-Middle) attack, would be (as commented below by Mamsds) to verify GitHub’s public key first (see “GitHub’s SSH key fingerprints“) and, if you find a match, then you can answer ‘yes’. Example: ssh-keyscan -t … Read more

Github actions share workspace/artifacts between jobs?

You can use the Github Actions upload-artifact and download-artifact to share data between jobs. In job1: steps: – uses: actions/checkout@v1 – run: mkdir -p path/to/artifact – run: echo hello > path/to/artifact/world.txt – uses: actions/upload-artifact@master with: name: my-artifact path: path/to/artifact And job2: steps: – uses: actions/checkout@master – uses: actions/download-artifact@master with: name: my-artifact path: path/to/artifact – run: … Read more