Direct sync merge #42
Workflow file for this run
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: Daily Sync | |
on: | |
schedule: | |
- cron: "0 0 */1 * *" | |
workflow_dispatch: | |
pull_request: | |
jobs: | |
sync-job: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: violet | |
steps: | |
# | |
# Setup | |
# | |
- uses: actions/checkout@v4 | |
with: | |
ref: dev | |
- id: "auth" | |
uses: "google-github-actions/auth@v2" | |
with: | |
credentials_json: "${{ secrets.GCP_CREDENTIALS }}" | |
- name: "Set up Cloud SDK" | |
uses: "google-github-actions/setup-gcloud@v2" | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: "3.10" | |
# | |
# Sync | |
# | |
- name: Install Requirements | |
run: pip3 install -r script/requirements.txt | |
- name: Sync Main | |
run: | | |
python3 script/daily-crop.py | |
python3 script/daily-bookmark.py | |
- name: Compress | |
uses: montudor/action-zip@v1 | |
with: | |
args: zip -qq -r violet/assets/daily.zip violet/assets/daily | |
# | |
# Update | |
# | |
- name: Today | |
id: ciinfo | |
if: always() | |
run: echo "today=$(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT | |
- name: Revision | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
git checkout -b sync | |
git config --local user.email "[email protected]" | |
git config --local user.name "violet-dev-bot" | |
git config --global pull.rebase false | |
git add assets/daily.zip | |
git commit -m "Daily Sync (${{ steps.ciinfo.outputs.today }})" | |
git checkout dev | |
git merge sync | |
git push -f |