Skip to content

Commit

Permalink
Don't build Alpine edge images
Browse files Browse the repository at this point in the history
They are broken.
  • Loading branch information
tarleb committed Oct 14, 2024
1 parent b26ce4f commit 1900e00
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
run: |
if [ 'schedule' = "${{ github.event_name }}" ]; then
pandoc_versions="['edge']"
stacks="['alpine','ubuntu','static']"
stacks="['ubuntu','static']"
build=true
else
# Determine PANDOC_VERSION for Makefile based on commit message.
Expand All @@ -62,7 +62,11 @@ jobs:
tr '\n' ',')
if [ -z "$stacks" ]; then
stacks="'alpine', 'ubuntu', 'static'"
if [ "$pandoc_versions" = "['edge']" ]; then
stacks="'ubuntu', 'static'"
else
stacks="'alpine', 'ubuntu', 'static'"
fi
fi
stacks="[${stacks}]"
Expand Down

0 comments on commit 1900e00

Please sign in to comment.