datatracker/.github/workflows/dev-assets-sync-nightly.yml
dependabot[bot] 5bb093aff8
chore(deps): bump docker/build-push-action from 4 to 5 (#6337)
Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 4 to 5.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](https://github.com/docker/build-push-action/compare/v4...v5)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Nicolas Giard <github@ngpixel.com>
2023-09-18 17:42:56 -04:00

62 lines
1.5 KiB
YAML

# GITHUB ACTIONS - WORKFLOW
# RSync the assets in the shared assets volume
name: Nightly Dev Shared Assets Sync
# Controls when the workflow will run
on:
# Run every night
schedule:
- cron: '0 1 * * *'
# Run on app-rsync-extras.sh changes
push:
branches:
- main
paths:
- 'docker/scripts/app-rsync-extras.sh'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
name: Build Docker Image
runs-on: ubuntu-latest
if: ${{ github.event_name != 'schedule' }}
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v4
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Docker Build & Push
uses: docker/build-push-action@v5
with:
context: .
file: dev/shared-assets-sync/Dockerfile
push: true
tags: ghcr.io/ietf-tools/datatracker-rsync-assets:latest
sync:
name: Run assets rsync
if: ${{ always() }}
runs-on: [self-hosted, dev-server]
needs: [build]
steps:
- name: Run rsync
env:
DEBIAN_FRONTEND: noninteractive
run: |
docker pull ghcr.io/ietf-tools/datatracker-rsync-assets:latest
docker run --rm -v dt-assets:/assets ghcr.io/ietf-tools/datatracker-rsync-assets:latest
docker image prune -a -f