Skip to content

Build pre

Build pre #1

Workflow file for this run

name: Build pre
on:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_TOKEN }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Build and push
uses: docker/build-push-action@v4
with:
platforms: linux/i386
context: "{{defaultContext}}:containers"
file: Dockerfile-pre
push: true
provenance: false
tags: ghcr.io/r-hub/evercran/pre,rhub/evercran:pre,docker.io/rhub/evercran:pre