Skip to content

Instantly share code, notes, and snippets.

@abitrolly
Last active May 19, 2020 05:19
Show Gist options
  • Save abitrolly/5c26a65a6bfec1f29e0f5071e0f874c1 to your computer and use it in GitHub Desktop.
Save abitrolly/5c26a65a6bfec1f29e0f5071e0f874c1 to your computer and use it in GitHub Desktop.
MS owned GitHub

https://help.github.com/en/actions - there docs are full of BS.
https://www.liatrio.com/blog/github-actions - but this link is awesome.

s/you can/you should/ and here is what you need to do.

You should create at least one workflow as a .yaml/.yml file in .github/workflows/ dir.

Each workflow contains on trigger and jobs, each job contains steps.

on: push
jobs:
  anyjobname:
    runs-on: ubuntu-latest
    steps:
      - run: echo done.

No source code checkout by defaut.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment