mirror of
https://github.com/commercialhaskell/stackage.git
synced 2026-01-11 23:08:30 +01:00
12 lines
234 B
Bash
Executable File
12 lines
234 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -eux
|
|
|
|
rm -rf bin
|
|
mkdir -p bin
|
|
|
|
docker build . --tag curator-exes
|
|
|
|
docker run --rm -v $(pwd)/bin:/output curator-exes cp /artifacts/* output
|
|
aws s3 cp curators-exes/* s3://download.fpcomplete.com/curator-exes/
|