Build #268
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Build" | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '45 3 * * 5' # At 03:45 on Friday | |
env: | |
R2_ACCESS_KEY_ID: ${{ secrets.R2_ACCESS_KEY_ID }} | |
R2_SECRET_ACCESS_KEY: ${{ secrets.R2_SECRET_ACCESS_KEY }} | |
R2_API_ENDPOINT: ${{ secrets.R2_API_ENDPOINT }} | |
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub | |
permissions: | |
contents: write | |
pages: write | |
id-token: write | |
jobs: | |
website: | |
name: Website | |
# https://github.com/actions/runner-images/blob/main/images/ubuntu/Ubuntu2204-Readme.md | |
runs-on: ubuntu-latest | |
steps: | |
- name: 🐧 Install dependencies | |
run: | | |
sudo apt-get install \ | |
libapp-options-perl \ | |
libdbd-csv-perl \ | |
libdbd-sqlite3-perl \ | |
libencode-perl \ | |
libjson-xs-perl \ | |
libtemplate-perl \ | |
libyaml-libyaml-perl \ | |
rclone \ | |
sqlite3 | |
# https://github.com/marketplace/actions/checkout | |
- name: 🛎️ Checkout | |
uses: actions/checkout@v4 | |
# Configure Workload Identity Federation via a credentials file. | |
- id: auth | |
name: 🔐 Authenticate to Google Cloud | |
uses: google-github-actions/auth@v2 | |
with: | |
workload_identity_provider: 'projects/187514662523/locations/global/workloadIdentityPools/github-com/providers/github-com-oidc' | |
service_account: 'gh-compute-machine-types@gcloud-compute-344913.iam.gserviceaccount.com' | |
export_environment_variables: true | |
# Install gcloud, `setup-gcloud` automatically picks up authentication from `auth`. | |
- name: '🔧 Set up Google Cloud SDK' | |
uses: 'google-github-actions/setup-gcloud@v2' | |
# Now you can run gcloud commands authenticated as the impersonated service account. | |
- name: 🔨 Run build script | |
run: | | |
cd build || exit 9 | |
bash build.sh || exit 9 | |
- name: 📑 Create website | |
run: | | |
cd build || exit 9 | |
perl site.pl || exit 9 | |
- name: 🧪 Tests | |
run: | | |
cat "site/europe-west4/n2-standard-8.html" | grep '249' || exit 9 | |
jq -e '.[] | .name' "site/instance_in_region.json" | grep '"n2-standard-8"' || exit 9 | |
- name: Commit last build | |
run: | | |
cd build || exit 9 | |
bash commit.sh || exit 9 | |
- name: 🪣 Publish website | |
#run: gcloud storage cp --gzip-in-flight=html,js,css,txt,json --recursive site/* gs://gcloud-compute.com || exit 9 | |
run: | | |
mkdir -p "$HOME/.config/rclone" || exit 9 | |
echo "[r2]" > "$HOME/.config/rclone/rclone.conf" || exit 9 | |
echo "type = s3" >> "$HOME/.config/rclone/rclone.conf" | |
echo "provider = Cloudflare" >> "$HOME/.config/rclone/rclone.conf" | |
echo "access_key_id = $R2_ACCESS_KEY_ID" >> "$HOME/.config/rclone/rclone.conf" | |
echo "secret_access_key = $R2_SECRET_ACCESS_KEY" >> "$HOME/.config/rclone/rclone.conf" | |
echo "endpoint = $R2_API_ENDPOINT" >> "$HOME/.config/rclone/rclone.conf" | |
echo "acl = private" >> "$HOME/.config/rclone/rclone.conf" | |
echo "no_check_bucket = true" >> "$HOME/.config/rclone/rclone.conf" | |
rclone copy --transfers 32 --checkers 64 --fast-list "site/" "r2:gcloud-compute/" || exit 9 |