. #144
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Unikernels | |
on: | |
push: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: Checkout | |
uses: actions/checkout@v2 | |
- | |
name: Set up QEMU | |
uses: docker/setup-qemu-action@v1 | |
- | |
name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v1 | |
- | |
name: Login to DockerHub | |
uses: docker/login-action@v1 | |
with: | |
username: ${{ secrets.DOCKER_HUB_USERNAME }} | |
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} | |
- | |
name: Extract the branch name | |
run: echo "BRANCH=${GITHUB_REF##*/}" >> $GITHUB_ENV | |
- | |
name: Build relay | |
uses: docker/build-push-action@v2 | |
with: | |
context: . | |
build-args: | | |
BRANCH=${{ env.BRANCH }} | |
tags: mirage/ptt:${{ env.BRANCH }} | |
file: ./Dockerfile.relay | |
- | |
name: Build submission | |
uses: docker/build-push-action@v2 | |
with: | |
context: . | |
build-args: | | |
BRANCH=${{ env.BRANCH }} | |
file: ./Dockerfile.submission | |
- | |
name: Build signer | |
uses: docker/build-push-action@v2 | |
with: | |
context: . | |
build-args: | | |
BRANCH=${{ env.BRANCH }} | |
file: ./Dockerfile.signer | |
- | |
name: Build spamfilter | |
uses: docker/build-push-action@v2 | |
with: | |
context: . | |
build-args: | | |
BRANCH=${{ env.BRANCH }} | |
file: ./Dockerfile.spamfilter | |
- | |
name: Build verifier | |
uses: docker/build-push-action@v2 | |
with: | |
context: . | |
build-args: | | |
BRANCH=${{ env.BRANCH }} | |
file: ./Dockerfile.verifier |