Skip to content

Commit

Permalink
Download blocklist if it is missing.
Browse files Browse the repository at this point in the history
  • Loading branch information
mitar committed May 1, 2023
1 parent d9baeb2 commit e6bcc28
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ setup:
set -o errexit
apk add --update git
if [ ! -f blocklist.txt ]; then
wget -O blocklist.txt https://gitlab.com/tozd/docker/meteor/-/raw/master/blocklist.txt
fi
# Get all Meteor versions from GitHub.
versions="$(git ls-remote --tags https://github.com/meteor/meteor.git 'tags/release/METEOR@*' | cut -d '@' -f 2 | grep -v -)"
for version in ${versions} ; do
Expand Down

0 comments on commit e6bcc28

Please sign in to comment.