Skip to content

haskell

haskell #261

Workflow file for this run

name: haskell
on:
workflow_dispatch:
inputs:
ghc:
description: "ghc version"
required: true
default: "904"
type: choice
options:
- 810
- 904
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: "recursive"
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build & Push images
run: |
HS_DIR='.' ./build.sh haskell${{ inputs.ghc }}
HS_DIR='.' ./build.sh haskell${{ inputs.ghc }}_rqlite