Docker Repository Update #75
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: Docker Repository Update | |
on: | |
push: | |
branches: | |
- master | |
schedule: | |
- cron: '0 1 * * *' | |
jobs: | |
update_docker_repo_info: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Python environment | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.9' | |
- name: Set up pipenv | |
run: | | |
python -m pip install --upgrade pip | |
pip install pipenv | |
- name: Install dependencies | |
run: pipenv install | |
- name: Run update-docker-repo-info script | |
run: pipenv run ./update-docker-repo-info.py | |
- name: Configure Git for commit | |
run: | | |
git config --global user.email "dc-builder@users.noreply.github.com" | |
git config --global user.name "dc-builder" | |
- name: Check for changes | |
id: git_status | |
run: | | |
git status --short > git_changes.txt | |
cat git_changes.txt | |
- name: Upload artifacts (if changes) | |
if: steps.git_status.outputs.changes != '' | |
run: | | |
mkdir -p artifacts | |
cat git_changes.txt | awk '{print $2}' | sed 's:/*$::' | xargs -I {} cp -rf {} artifacts/. || echo "cp failed for some reason. continue..." | |
continue-on-error: true | |
- name: Commit and push changes | |
if: steps.git_status.outputs.changes != '' | |
run: | | |
git add . | |
git commit -m "$(date): auto repo info update [skip ci]" | |
git push | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
continue-on-error: true | |
- name: Print completion message | |
run: echo "Docker repository update complete." |