Skip to content

Commit

Permalink
GHA: Only build from master branch
Browse files Browse the repository at this point in the history
  • Loading branch information
iBug committed May 22, 2020
1 parent 3e00cc9 commit 5d3a2d7
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/build.yml
@@ -1,6 +1,9 @@
name: build

on: push
on:
push:
branches:
- master

jobs:
build:
Expand Down
10 changes: 10 additions & 0 deletions _posts/2020-06-01-linux-container-in-c.md
Expand Up @@ -11,3 +11,13 @@ header:

published: false
---

Since years ago containers have been a hot topic everywhere. There are many container softwares like [Docker][docker], [Linux Containers][lxc] and [Singularity][singularity]. It's hard to say one *understand* what containers are without diving into all the gory details of them, so I decided to go on this exploration myself.

[docker]: https://www.docker.com/
[lxc]: https://linuxcontainers.org/
[singularity]: https://sylabs.io/singularity/

The actual motivation was (quite) a bit different, though, as I am the TA of *Operating Systems (H)* this semester, and I want to inject a spirit of innovation into the course labs, so I worked this out very early.

Long story short,
3 changes: 1 addition & 2 deletions netlify.toml
Expand Up @@ -17,8 +17,7 @@ JEKYLL_ENV = "production"
#to = "https://ibugone.com"

[[redirects]]
from = "/example/*"
from = "/minimal-mistakes/*"
to = "https://mmistakes.github.io/minimal-mistakes/:splat"
status = 200
force = true
#headers = {Host = "ibugone.com"}

0 comments on commit 5d3a2d7

Please sign in to comment.