Skip to content

convert ecall_file.S from symlink to regular file (#464) #145

convert ecall_file.S from symlink to regular file (#464)

convert ecall_file.S from symlink to regular file (#464) #145

Workflow file for this run

name: Build and deploy docker image
on:
push:
branches:
- master
workflow_dispatch:
jobs:
docker:
if: github.repository == 'mortbopet/Ripes'
runs-on: ubuntu-latest
steps:
-
uses: actions/checkout@v2
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
-
name: Cache Docker mounts
uses: actions/cache@v3
with:
path: /tmp/docker-ccache
key: ccache-docker-${{ github.sha }}
restore-keys: |
ccache-docker-
-
name: Inject cache into Docker
uses: reproducible-containers/buildkit-cache-dance@v3.1.0
with:
cache-source: /tmp/docker-ccache
cache-target: /ccache
-
name: Login to DockerHub
uses: docker/login-action@v1
with:
username: mortbopet
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Build and push
uses: docker/build-push-action@v2
with:
file: "./docker/ripes.dockerfile"
context: "./docker/"
push: true
tags: mortbopet/ripes:latest
cache-from: type=gha
cache-to: type=gha,mode=max