Update V8 Tools #32428
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
# Copyright 2020 the V8 project authors. All rights reserved. | |
# Use of this source code is governed by a BSD-style license that can be | |
# found in the LICENSE file. | |
name: Update V8 Tools | |
on: | |
push: | |
branches: | |
- main | |
schedule: | |
# Rebuild tools every hour. | |
- cron: '0 * * * *' | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Build and Deploy V8 Tools | |
runs-on: ubuntu-latest | |
container: | |
image: docker://python:3.10-alpine | |
steps: | |
- name: Install Dependencies | |
run: apk add git openssh-client rsync tar zstd npm | |
- name: Mark the github workspace as safe directory | |
run: git config --global --add safe.directory $GITHUB_WORKSPACE | |
- name: Checkout main Branch | |
uses: actions/checkout@v3 | |
- name: Checkout gh-pages | |
uses: actions/checkout@v3 | |
with: | |
ref: gh-pages | |
path: gen | |
- name: Build V8 Tools | |
run: python3 -u update.py | |
- name: Prevent auto-deploy | |
run: touch -a gen/.nojekyll | |
- name: Deploy | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
branch: gh-pages | |
folder: gen | |
git-config-name: V8 Tools Updater | |
git-config-email: [email protected] | |
commit-message: V8 Tools Update |