s5cmd-sync #31
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: s5cmd-sync | |
on: | |
workflow_dispatch: null | |
schedule: | |
- cron: '0 10 */2 * *' # every 2 days at 10am | |
push: | |
branches: | |
- 'main' | |
paths: | |
- 's5cmd-sync/**' | |
- '.github/workflows/s5cmd-sync_builder.yml' | |
jobs: | |
docker: | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: Checkout | |
uses: actions/checkout@v4 | |
- | |
name: Setup ENV | |
run: | | |
echo owner_lc=$(echo ${{ github.repository_owner }} | tr '[:upper:]' '[:lower:]') >> $GITHUB_ENV | |
- | |
name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- | |
name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- | |
name: Login to GitHub Container Registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- | |
name: Build and push | |
uses: docker/build-push-action@v4 | |
with: | |
context: ./${{ github.workflow }} | |
push: true | |
platforms: linux/amd64,linux/arm64 | |
tags: ghcr.io/${{ env.owner_lc }}/${{ github.workflow }}:latest | |
labels: | | |
org.opencontainers.image.documentation=https://github.com/LinuxHub-Group/dockerfiles/blob/main/${{ github.workflow }}/README.md | |
org.opencontainers.image.authors=${{ github.repository_owner }} |