debug assertion #32
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: Build and Upload Docker Image of Rclone With Config to GHCR | |
on: | |
schedule: | |
- cron: "0 16 * * 1" # Weekly at noon EST on Monday | |
workflow_dispatch: | |
push: # TODO: remove, just getting initial triggers now | |
concurrency: # Cancel previous workflows on the same pull request | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
release-image: | |
name: Build and Upload Docker Image of Rclone With Config to GHCR | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ secrets.DOCKER_UPLOADER_USERNAME }} | |
password: ${{ secrets.DOCKER_UPLOADER_PASSWORD }} | |
- name: Build and push | |
uses: docker/build-push-action@v5 | |
with: | |
push: true # Push is a shorthand for --output=type=registry | |
tags: ghcr.io/catalystneuro/rclone_with_config:latest | |
context: . | |
file: dockerfiles/rclone_with_config | |
provenance: false |